Skip to content

Commit bc54138

Browse files
committed
Unify the other way
1 parent d88e3d7 commit bc54138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

regression/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ endif
7878
.PHONY: test
7979
test:
8080
@for dir in $(DIRS); do \
81-
$(MAKE) "$$dir" || exit 1; \
81+
$(MAKE) "$$dir" test || exit 1; \
8282
done;
8383

8484
# Pattern to execute a single test suite directory
8585
.PHONY: $(DIRS)
8686
$(DIRS):
8787
@echo "Running $@..." ;
88-
$(MAKE) -C "$@" || exit 1;
88+
$(MAKE) -C "$@" test || exit 1;
8989

9090
# Run all test directories using GNU Parallel
9191
.PHONY: test-parallel

0 commit comments

Comments
 (0)