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 5b8a3d2 commit 96a3f50Copy full SHA for 96a3f50
regression/Makefile
@@ -79,7 +79,7 @@ test:
79
.PHONY: $(DIRS)
80
$(DIRS):
81
@echo "Running $@..." ;
82
- $(MAKE) -C "$@" test || exit 1;
+ $(MAKE) -C "$@" || exit 1;
83
84
# Run all test directories using GNU Parallel
85
.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