Skip to content

Commit 79defb5

Browse files
authored
Merge pull request diffblue#1605 from romainbrenguier/bugfix/failed-tests-printer-removed
Use -p option of test.pl instead of printer script
2 parents 1821b1a + a6af95d commit 79defb5

File tree

1 file changed

+4
-16
lines changed

1 file changed

+4
-16
lines changed

regression/jbmc-strings/Makefile

+4-16
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,16 @@
11
default: tests.log
22

33
test:
4-
@if ! ../test.pl -c ../../../src/jbmc/jbmc ; then \
5-
../failed-tests-printer.pl ; \
6-
exit 1 ; \
7-
fi
4+
@../test.pl -p -c ../../../src/jbmc/jbmc
85

96
testfuture:
10-
@if ! ../test.pl -c ../../../src/jbmc/jbmc -CF ; then \
11-
../failed-tests-printer.pl ; \
12-
exit 1 ; \
13-
fi
7+
@../test.pl -p -c ../../../src/jbmc/jbmc -CF
148

159
testall:
16-
@if ! ../test.pl -c ../../../src/jbmc/jbmc -CFTK ; then \
17-
../failed-tests-printer.pl ; \
18-
exit 1 ; \
19-
fi
10+
@../test.pl -p -c ../../../src/jbmc/jbmc -CFTK
2011

2112
tests.log: ../test.pl
22-
@if ! ../test.pl -c ../../../src/jbmc/jbmc ; then \
23-
../failed-tests-printer.pl ; \
24-
exit 1 ; \
25-
fi
13+
@../test.pl -p -c ../../../src/jbmc/jbmc
2614

2715
show:
2816
@for dir in *; do \

0 commit comments

Comments
 (0)