Skip to content

Commit 2be11f3

Browse files
committed
Make "clean" target in regression tests do full cleanup
1 parent 97e9314 commit 2be11f3

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

jbmc/regression/jbmc-strings/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ show:
2828
clean:
2929
find -name '*.out' -execdir $(RM) '{}' \;
3030
find -name '*.gb' -execdir $(RM) '{}' \;
31-
$(RM) tests.log
31+
$(RM) tests.log tests-symex-driven-loading.log

jbmc/regression/jbmc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ show:
2020
clean:
2121
find -name '*.out' -execdir $(RM) '{}' \;
2222
find -name '*.gb' -execdir $(RM) '{}' \;
23-
$(RM) tests.log
23+
$(RM) tests.log tests-symex-driven-loading.log
2424

2525
%.class: %.java ../../src/org.cprover.jar
2626
javac -g -cp ../../src/org.cprover.jar:. $<

regression/cbmc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ show:
1515

1616
clean:
1717
find -name '*.out' -execdir $(RM) '{}' \;
18-
find -name '*.gb' -execdir $(RM) '{}' \;
18+
find -name '*.smt2' -execdir $(RM) '{}' \;
1919
$(RM) tests.log

regression/goto-gcc/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ show:
1818
clean:
1919
find -name '*.out' -execdir $(RM) '{}' \;
2020
find -name '*.gb' -execdir $(RM) '{}' \;
21+
find -name '*.goto-cc-saved' -execdir $(RM) '{}' \;
2122
$(RM) tests.log

regression/invariants/Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,8 @@ show:
2525

2626
driver$(EXEEXT): $(OBJ)
2727
$(LINKBIN)
28+
29+
clean:
30+
find -name '*.out' -execdir $(RM) '{}' \;
31+
$(RM) driver$(EXEEXT) driver$(DEPEXT) driver$(OBJEXT)
32+
$(RM) tests.log

0 commit comments

Comments
 (0)