summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-01-27 22:48:03 +0000
committerMorgan Deters <mdeters@gmail.com>2010-01-27 22:48:03 +0000
commitfa58c38371131db68f780c9f6f7e7d3f2e07256a (patch)
tree2078b54d9ea698d0012f17e996600c23c418b44a /test/system
parent04c345a4debffaa82bd3e360aaf7cb4c6f135ed7 (diff)
support "make check" in src/ subdirs for unit-testing of just that module; also support synonyms for "make check" globally
Diffstat (limited to 'test/system')
-rw-r--r--test/system/Makefile8
-rw-r--r--test/system/Makefile.am4
-rw-r--r--test/system/Makefile.in4
3 files changed, 16 insertions, 0 deletions
diff --git a/test/system/Makefile b/test/system/Makefile
new file mode 100644
index 000000000..c1dc3ef2f
--- /dev/null
+++ b/test/system/Makefile
@@ -0,0 +1,8 @@
+topdir = ../..
+srcdir = test/system
+
+include $(topdir)/Makefile.subdir
+
+# synonyms for "check"
+.PHONY: regress regress0 regress1 regress2 regress3 test
+regress regress0 regress1 regress2 regress3 test: check
diff --git a/test/system/Makefile.am b/test/system/Makefile.am
index a12adc56b..5e9cca17a 100644
--- a/test/system/Makefile.am
+++ b/test/system/Makefile.am
@@ -24,3 +24,7 @@ EXTRA_DIST = \
# rebuild tests if a library changes
$(TESTS):: $(TEST_DEPS)
+
+# synonyms for "check"
+.PHONY: regress regress0 regress1 regress2 regress3 test
+regress regress0 regress1 regress2 regress3 test: check
diff --git a/test/system/Makefile.in b/test/system/Makefile.in
index 2496a1849..82a1b6ef4 100644
--- a/test/system/Makefile.in
+++ b/test/system/Makefile.in
@@ -498,6 +498,10 @@ uninstall-am:
# rebuild tests if a library changes
$(TESTS):: $(TEST_DEPS)
+# synonyms for "check"
+.PHONY: regress regress0 regress1 regress2 regress3 test
+regress regress0 regress1 regress2 regress3 test: check
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback