From 04da480e027e92ddc30fd114680d884ac905754a Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sat, 1 Jun 2013 12:44:02 +0200 Subject: [PATCH] make: Drop unused support for parallel test runs Tests can't run in parallel anyway, because they use uses a single sandbox directory and a single TCP port. Signed-off-by: Markus Armbruster --- Make.mk | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/Make.mk b/Make.mk index 3cfad4dfe..432002163 100644 --- a/Make.mk +++ b/Make.mk @@ -178,9 +178,6 @@ endif $(client): LDLIBS := $(LIBS_client) $(server): LDLIBS := $(LIBS_server) -# Self-tests -checks := check-smoke - ### Advertized goals @@ -248,11 +245,9 @@ uninstall: .PHONY: dist dist: dist-source dist-client dist-info -.PHONY: check $(checks) -check: $(checks) -$(checks): all -check-smoke: - @echo "Warning: smoke test is immature and needs work." >&2 +.PHONY: check +check: all + @echo "Warning: test suite is immature and needs work." >&2 $(srcdir)/tests/files-test $(srcdir) $(srcdir)/tests/fairland-test $(srcdir) ifeq ($(empthread),LWP) -- 2.43.0