We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58d64d8 commit d169b18Copy full SHA for d169b18
regression/Makefile
@@ -85,7 +85,7 @@ test:
85
.PHONY: $(DIRS)
86
$(DIRS):
87
@echo "Running $@..." ;
88
- $(MAKE) -C "$@" test || exit 1;
+ $(MAKE) -C "$@" || exit 1;
89
90
# Run all test directories using GNU Parallel
91
.PHONY: test-parallel
regression/cbmc/Makefile
@@ -1,3 +1,5 @@
1
+THIS_FILE := $(lastword $(MAKEFILE_LIST))
2
+
3
default: test
4
5
include ../../src/config.inc
@@ -11,6 +13,8 @@ endif
11
13
12
14
test:
15
@../test.pl -e -p -c "../../../src/cbmc/cbmc --validate-goto-model --validate-ssa-equation" -X smt-backend $(GCC_ONLY)
16
+ @$(MAKE) -f $(THIS_FILE) test-paths-lifo
17
+ @$(MAKE) -f $(THIS_FILE) test-cprover-smt2
18
19
test-cprover-smt2:
20
@../test.pl -e -p -c "../../../src/cbmc/cbmc --cprover-smt2" \
0 commit comments