File tree 1 file changed +4
-9
lines changed 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -12,21 +12,16 @@ DIRS = janalyzer-taint \
12
12
jbmc-generics \
13
13
# Empty last line
14
14
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
-
20
15
# Run all test directories in sequence
21
16
.PHONY : test
22
17
test :
23
- @for dir in $(PLATFORM_DIRS ) ; do \
18
+ @for dir in $(DIRS ) ; do \
24
19
$(MAKE ) " $$ dir" || exit 1; \
25
20
done ;
26
21
27
22
# Pattern to execute a single test suite directory
28
- .PHONY : $(PLATFORM_DIRS )
29
- $(PLATFORM_DIRS ) :
23
+ .PHONY : $(DIRS )
24
+ $(DIRS ) :
30
25
@echo " Running $@ ..." ;
31
26
$(MAKE ) -C " $@ " test || exit 1;
32
27
@@ -42,7 +37,7 @@ test-parallel:
42
37
--linebuffer \
43
38
--jobs $(JOBS ) \
44
39
$(MAKE ) " {}" \
45
- ::: $(PLATFORM_DIRS )
40
+ ::: $(DIRS )
46
41
47
42
48
43
.PHONY : clean
You can’t perform that action at this time.
0 commit comments