File tree Expand file tree Collapse file tree 12 files changed +13
-8
lines changed
validate-trace-xml-schema Expand file tree Collapse file tree 12 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,7 @@ test-parallel:
114
114
115
115
.PHONY : clean
116
116
clean :
117
- @for dir in * ; do \
118
- if [ -d " $$ dir" ]; then \
119
- $(MAKE ) -C " $$ dir" clean; \
120
- fi ; \
117
+ @for dir in $(DIRS ) ; do \
118
+ $(MAKE ) -C " $$ dir" clean; \
121
119
done ;
122
120
$(RM ) tests.log
Original file line number Diff line number Diff line change @@ -64,4 +64,4 @@ build_goto_binaries:
64
64
clean :
65
65
find . -name ' *.out' -execdir $(RM ) ' {}' \;
66
66
find . -name ' *.gb' -execdir $(RM ) ' {}' \;
67
- $(RM ) tests.log tests-c++-front-end .log
67
+ $(RM ) tests* .log
Original file line number Diff line number Diff line change 6
6
tests.log : ../test.pl test
7
7
8
8
clean :
9
+ find . -name ' *.out' -execdir $(RM ) ' {}' \;
9
10
$(RM ) tests* .log
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ tests.log: ../test.pl
11
11
12
12
clean :
13
13
find . -name ' *.out' -execdir $(RM ) ' {}' \;
14
- $(RM ) tests.log
14
+ $(RM ) tests* .log
Original file line number Diff line number Diff line change @@ -39,4 +39,5 @@ tests.log: ../test.pl test
39
39
clean :
40
40
find . -name ' *.out' -execdir $(RM ) ' {}' \;
41
41
find . -name ' *.smt2' -execdir $(RM ) ' {}' \;
42
+ $(RM ) export-symex-ready-goto/exported.symex.ready.goto
42
43
$(RM ) tests* .log
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ tests.log: ../test.pl test
34
34
35
35
clean :
36
36
@for dir in * ; do \
37
- $(RM ) tests.log; \
38
37
if [ -d " $$ dir" ]; then \
39
38
cd " $$ dir" ; \
40
39
$(RM ) * .out * .gb * .smt2; \
41
40
cd ..; \
42
41
fi \
43
42
done
43
+ $(RM ) tests* .log
Original file line number Diff line number Diff line change @@ -10,4 +10,5 @@ test-no-p:
10
10
@../test.pl -e -c ' ../../../src/cprover/cprover'
11
11
12
12
clean :
13
+ find . -name ' *.out' -execdir $(RM ) ' {}' \;
13
14
$(RM ) tests.log
Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ tests.log: ../test.pl
23
23
clean :
24
24
find . -name ' *.out' -execdir $(RM ) ' {}' \;
25
25
find . -name ' *.gb' -execdir $(RM ) {} \;
26
+ find . -name ' *-harness.c' -execdir $(RM ) {} \;
26
27
$(RM ) tests.log
Original file line number Diff line number Diff line change 26
26
cd ..; \
27
27
fi \
28
28
done
29
+ $(RM ) ../cbmc/Recursion6/* .gb
Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ tests.log: ../test.pl test
16
16
17
17
clean :
18
18
find . -name ' *.out' -execdir $(RM ) ' {}' \;
19
+ find . -name ' *.json' -execdir $(RM ) ' {}' \;
19
20
$(RM ) tests.log
Original file line number Diff line number Diff line change 41
41
# these test for invalid command line handling
42
42
['bad_option' , 'test_multiple.desc' ],
43
43
['bad_option' , 'test.desc' ],
44
+ ['export-symex-ready-goto' , 'test-bad-usage.desc' ],
44
45
['unknown-argument-suggestion' , 'test.desc' ],
45
46
['sat-solver-error' , 'test.desc' ],
46
47
# this one produces XML intermingled with main XML output when used with --xml-ui
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ memory-analyzer/test.inc: memory-analyzer/test.c
303
303
memory-analyzer/gdb_api$(OBJEXT ) : memory-analyzer/input.inc memory-analyzer/test.inc
304
304
305
305
CLEANFILES = $(CATCH_TEST ) testing-utils/testing-utils$(LIBEXT ) \
306
- memory-analyzer/input.inc memory-analyzer/test.inc
306
+ memory-analyzer/input.inc memory-analyzer/test.inc gdb.txt
307
307
308
308
# only add a dependency for libraries to avoid triggering implicit rules, which
309
309
# would cause unnecessary rebuilds
You can’t perform that action at this time.
0 commit comments