Skip to content

Commit d98a39b

Browse files
Merge pull request #2556 from peterschrammel/run-string-smoke-tests
Run strings-smoke-tests
2 parents d393d1c + f1afbff commit d98a39b

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

jbmc/regression/Makefile

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,27 @@
11
# For the best possible utilisation of multiple cores when
22
# running tests in parallel, it is important that these directories are
33
# listed with decreasing runtimes (i.e. longest running at the top)
4-
DIRS = janalzyer-taint \
4+
DIRS = janalyzer-taint \
55
jbmc \
66
jbmc-concurrency \
77
jbmc-cover \
88
jbmc-inheritance \
99
jbmc-strings \
1010
jdiff \
11-
string-smoke-tests \
11+
strings-smoke-tests \
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
2217
test:
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

0 commit comments

Comments
 (0)