Skip to content

Commit b8057d3

Browse files
author
Daniel Kroening
authored
Merge pull request diffblue#1448 from diffblue/goto-analalyzer-taint-test
moved taint-related tests for goto-analyzer into separate subdirectory
2 parents 8118efa + 086d6da commit b8057d3

28 files changed

+26
-0
lines changed

regression/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ DIRS = ansi-c \
55
cbmc-java-inheritance \
66
cpp \
77
goto-analyzer \
8+
goto-analyzer-taint \
89
goto-cc-cbmc \
910
goto-cc-goto-analyzer \
1011
goto-diff \
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
default: tests.log
2+
3+
test:
4+
@if ! ../test.pl -c ../../../src/goto-analyzer/goto-analyzer ; then \
5+
../failed-tests-printer.pl ; \
6+
exit 1 ; \
7+
fi
8+
9+
tests.log: ../test.pl
10+
@if ! ../test.pl -c ../../../src/goto-analyzer/goto-analyzer ; then \
11+
../failed-tests-printer.pl ; \
12+
exit 1 ; \
13+
fi
14+
15+
show:
16+
@for dir in *; do \
17+
if [ -d "$$dir" ]; then \
18+
vim -o "$$dir/*.java" "$$dir/*.out"; \
19+
fi; \
20+
done;
21+
22+
clean:
23+
find -name '*.out' -execdir $(RM) '{}' \;
24+
find -name '*.gb' -execdir $(RM) '{}' \;
25+
$(RM) tests.log

0 commit comments

Comments
 (0)