File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 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 \
2222 goto-instrument-json \
2323 goto-instrument-wmm-core \
2424 goto-instrument-typedef \
25+ goto-inspect \
2526 smt2_solver \
2627 smt2_strings \
2728 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