Skip to content

Commit f1afbff

Browse files
Remove unnecessary PLATFORM_DIRS
1 parent 0c75b47 commit f1afbff

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

jbmc/regression/Makefile

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff 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
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)