Skip to content

Commit a6af95d

Browse files
Use -p option of test.pl instead of printer script
This script was removed, so mentions of it in Makefiles need to be replaced by usage of -p option of test.pl.
1 parent 1821b1a commit a6af95d

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)