summaryrefslogtreecommitdiff
path: root/tests/check.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check.mk')
-rw-r--r--tests/check.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/check.mk b/tests/check.mk
new file mode 100644
index 000000000..f5c08a259
--- /dev/null
+++ b/tests/check.mk
@@ -0,0 +1,22 @@
+# FIXME: add comment
+
+# Ensure that all version-controlled executable files are listed in TESTS.
+_v = TESTS
+FIXME_hook_this_to_make_distcheck:
+ sed -n '/^$(_v) =/,/[^\]$$/p' $(srcdir)/Makefile.am \
+ | sed 's/^ *//;/^\$$.*/d;/^$(_v) =/d' \
+ | tr -s '\012\\' ' ' | fmt -1 | sort -u > t1
+ find `$(top_srcdir)/build-aux/vc-list-files $(srcdir)` \
+ -type f -perm -111 -printf '%f\n'|sort -u \
+ | diff -u t1 -
+
+# Append this, because automake does the same.
+TESTS_ENVIRONMENT += \
+ abs_top_srcdir=$(abs_top_srcdir) \
+ srcdir=$(srcdir)
+
+TEST_LOGS = $(TESTS:=.log)
+
+# Parallel replacement of Automake's check-TESTS target.
+# Include it last.
+include $(top_srcdir)/build-aux/check.mk