File tree 5 files changed +31
-0
lines changed
5 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -47,3 +47,4 @@ add_subdirectory(cbmc-cpp)
47
47
add_subdirectory (goto-cc-goto-analyzer)
48
48
add_subdirectory (systemc)
49
49
add_subdirectory (contracts)
50
+ add_subdirectory (goto-harness)
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ DIRS = cbmc \
16
16
test-script \
17
17
goto-analyzer-taint \
18
18
goto-gcc \
19
+ goto-harness \
19
20
goto-cl \
20
21
goto-cc-cbmc \
21
22
cbmc-cpp \
Original file line number Diff line number Diff line change
1
+ add_test_pl_tests(
2
+ "$<TARGET_FILE:goto-harness>" )
Original file line number Diff line number Diff line change
1
+ default : tests.log
2
+
3
+ GOTO_HARNESS_EXE =../../../src/goto-harness/goto-harness
4
+
5
+ test :
6
+ @../test.pl -p -c ${GOTO_HARNESS_EXE}
7
+
8
+ tests.log : ../test.pl
9
+ @../test.pl -p -c ${GOTO_HARNESS_EXE}
10
+
11
+ show :
12
+ @for dir in * ; do \
13
+ if [ -d " $$ dir" ]; then \
14
+ vim -o " $$ dir/*.c" " $$ dir/*.out" ; \
15
+ fi ; \
16
+ done ;
17
+
18
+ clean :
19
+ find -name ' *.out' -execdir $(RM ) ' {}' \;
20
+ find -name ' *.gb' -execdir $(RM ) {} \;
21
+ $(RM ) tests.log
Original file line number Diff line number Diff line change
1
+ CORE
2
+ dummy
3
+ --version
4
+ ^\d+\.\d+ \([^)]+\)
5
+ ^EXIT=0$
6
+ ^SIGNAL=0$
You can’t perform that action at this time.
0 commit comments