File tree 1 file changed +6
-11
lines changed
1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 1
1
# For the best possible utilisation of multiple cores when
2
2
# running tests in parallel, it is important that these directories are
3
3
# listed with decreasing runtimes (i.e. longest running at the top)
4
- DIRS = janalzyer -taint \
4
+ DIRS = janalyzer -taint \
5
5
jbmc \
6
6
jbmc-concurrency \
7
7
jbmc-cover \
8
8
jbmc-inheritance \
9
9
jbmc-strings \
10
10
jdiff \
11
- string -smoke-tests \
11
+ strings -smoke-tests \
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