]> git.pond.sub.org Git - empserver/commitdiff
make: Drop unused support for parallel test runs
authorMarkus Armbruster <armbru@pond.sub.org>
Sat, 1 Jun 2013 10:44:02 +0000 (12:44 +0200)
committerMarkus Armbruster <armbru@pond.sub.org>
Sat, 1 Jun 2013 10:46:06 +0000 (12:46 +0200)
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 <armbru@pond.sub.org>
Make.mk

diff --git a/Make.mk b/Make.mk
index 3cfad4dfe624897212d28e1c89f3e917ddadd244..432002163fac9f941fd94ea8911356814ebac0e9 100644 (file)
--- 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)