aboutsummaryrefslogtreecommitdiff
path: root/mk/tests.mk
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2020-07-02 11:34:15 +0200
committerregnat <rg@regnat.ovh>2020-07-02 16:13:36 +0200
commit1b5aa60767f4a918250b157de054e1862240ca10 (patch)
tree95f75b6a969ca4272231dc9dfe9beba40d3685a4 /mk/tests.mk
parent38ccf2e24168ab5c0d2a7cf6b5bdec1b0784ebcd (diff)
Run the tests in parallel
Cause the time needed to run the testsuite to drop from ~4mins to ~40s
Diffstat (limited to 'mk/tests.mk')
-rw-r--r--mk/tests.mk41
1 files changed, 4 insertions, 37 deletions
diff --git a/mk/tests.mk b/mk/tests.mk
index 70c30661b..e2258ede6 100644
--- a/mk/tests.mk
+++ b/mk/tests.mk
@@ -1,45 +1,12 @@
# Run program $1 as part of ‘make installcheck’.
define run-install-test
- installcheck: $1
+ installcheck: $1.test
- _installcheck-list += $1
+ .PHONY: $1.test
+ $1.test: $1 tests/common.sh tests/init.sh
+ @env TEST_NAME=$1 TESTS_ENVIRONMENT="$(tests-environment)" mk/run_test.sh $1
endef
-# Color code from https://unix.stackexchange.com/a/10065
-installcheck:
- @total=0; failed=0; \
- red=""; \
- green=""; \
- yellow=""; \
- normal=""; \
- if [ -t 1 ]; then \
- red=""; \
- green=""; \
- yellow=""; \
- normal=""; \
- fi; \
- for i in $(_installcheck-list); do \
- total=$$((total + 1)); \
- printf "running test $$i..."; \
- log="$$(cd $$(dirname $$i) && $(tests-environment) $$(basename $$i) 2>&1)"; \
- status=$$?; \
- if [ $$status -eq 0 ]; then \
- echo " [$${green}PASS$$normal]"; \
- elif [ $$status -eq 99 ]; then \
- echo " [$${yellow}SKIP$$normal]"; \
- else \
- echo " [$${red}FAIL$$normal]"; \
- echo "$$log" | sed 's/^/ /'; \
- failed=$$((failed + 1)); \
- fi; \
- done; \
- if [ "$$failed" != 0 ]; then \
- echo "$${red}$$failed out of $$total tests failed $$normal"; \
- exit 1; \
- else \
- echo "$${green}All tests succeeded$$normal"; \
- fi
-
.PHONY: check installcheck