File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ DIRS = cbmc-shadow-memory \
22
22
goto-instrument-json \
23
23
goto-instrument-wmm-core \
24
24
goto-instrument-typedef \
25
+ goto-inspect \
25
26
smt2_solver \
26
27
smt2_strings \
27
28
strings \
Original file line number Diff line number Diff line change
1
+ default : tests.log
2
+
3
+ include ../../src/config.inc
4
+ include ../../src/common
5
+
6
+ ifeq ($(BUILD_ENV_ ) ,MSVC)
7
+ exe=../../../src/goto-cc/goto-cl
8
+ is_windows=true
9
+ excluded_tests = -X winbug
10
+ else
11
+ exe=../../../src/goto-cc/goto-cc
12
+ is_windows=false
13
+ endif
14
+
15
+ test :
16
+ @../test.pl -e -p -c ' ../chain.sh $(exe) ../../../src/goto-inspect/goto-inspect $(is_windows)' $(excluded_tests )
17
+
18
+ tests.log :
19
+ @../test.pl -e -p -c ' ../chain.sh $(exe) ../../../src/goto-inspect/goto-inspect $(is_windows)' $(excluded_tests )
20
+
21
+ clean :
22
+ find . -name ' *.out' -execdir $(RM ) ' {}' \;
23
+ find . -name ' *.gb' -execdir $(RM ) ' {}' \;
24
+ $(RM ) tests.log
You can’t perform that action at this time.
0 commit comments