File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed
Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -12,21 +12,16 @@ DIRS = janalyzer-taint \
1212 jbmc-generics \
1313 # Empty last line
1414
15- # Tests under goto-gcc cannot be run on Windows, so appveyor.yml unlinks
16- # the entire directory under Windows. This variable will contain the list
17- # of directories that actually exist on the current platform.
18- PLATFORM_DIRS = $(wildcard $(DIRS ) )
19-
2015# Run all test directories in sequence
2116.PHONY : test
2217test :
23- @for dir in $(PLATFORM_DIRS ) ; do \
18+ @for dir in $(DIRS ) ; do \
2419 $(MAKE ) " $$ dir" || exit 1; \
2520 done ;
2621
2722# Pattern to execute a single test suite directory
28- .PHONY : $(PLATFORM_DIRS )
29- $(PLATFORM_DIRS ) :
23+ .PHONY : $(DIRS )
24+ $(DIRS ) :
3025 @echo " Running $@ ..." ;
3126 $(MAKE ) -C " $@ " test || exit 1;
3227
@@ -42,7 +37,7 @@ test-parallel:
4237 --linebuffer \
4338 --jobs $(JOBS ) \
4439 $(MAKE ) " {}" \
45- ::: $(PLATFORM_DIRS )
40+ ::: $(DIRS )
4641
4742
4843.PHONY : clean
You can’t perform that action at this time.
0 commit comments