Merge branch 'develop' of github.com:diffblue/cbmc into develop

This commit is contained in:
Daniel Kroening 2017-10-10 22:21:20 +01:00
commit 0681219a73
28 changed files with 26 additions and 0 deletions

View File

@ -5,6 +5,7 @@ DIRS = ansi-c \
cbmc-java-inheritance \
cpp \
goto-analyzer \
goto-analyzer-taint \
goto-cc-cbmc \
goto-cc-goto-analyzer \
goto-diff \

View File

@ -0,0 +1,25 @@
default: tests.log
test:
@if ! ../test.pl -c ../../../src/goto-analyzer/goto-analyzer ; then \
../failed-tests-printer.pl ; \
exit 1 ; \
fi
tests.log: ../test.pl
@if ! ../test.pl -c ../../../src/goto-analyzer/goto-analyzer ; then \
../failed-tests-printer.pl ; \
exit 1 ; \
fi
show:
@for dir in *; do \
if [ -d "$$dir" ]; then \
vim -o "$$dir/*.java" "$$dir/*.out"; \
fi; \
done;
clean:
find -name '*.out' -execdir $(RM) '{}' \;
find -name '*.gb' -execdir $(RM) '{}' \;
$(RM) tests.log