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 <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2013-06-01 12:44:02 +02:00
parent edfb80a1f7
commit 04da480e02

11
Make.mk
View file

@ -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)