about summary refs log tree commit diff
path: root/mk/tests.mk
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-09T15·15+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-09T15·15+0100
commit568b1b0a8a65cb255d6a7a33dfe2c15df3212103 (patch)
treefedfcccea3f25a6079c1f8772b2f33c171eb1a9f /mk/tests.mk
parentbf8b66adcfdc04f2f0f0a482c66dd419a355cad6 (diff)
Remove mk subdirectory in preparation for "git subtree"
Diffstat (limited to 'mk/tests.mk')
-rw-r--r--mk/tests.mk29
1 files changed, 0 insertions, 29 deletions
diff --git a/mk/tests.mk b/mk/tests.mk
deleted file mode 100644
index 8a3bff66e890..000000000000
--- a/mk/tests.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-# Run program $1 as part of ‘make installcheck’.
-define run-install-test =
-
-  installcheck: $1
-
-  # Run the test in its own directory to mimick Automake behaviour.
-  $1.run: $1 $(_PREV_TEST)
-
-  _installcheck_list += $1
-
-endef
-
-installcheck: install
-	@total=0; failed=0; for i in $(_installcheck_list); do \
-	  total=$$((total + 1)); \
-	  echo "running test $$i"; \
-	  if (cd $$(dirname $$i) && $(TESTS_ENVIRONMENT) $$(basename $$i)); then \
-	    echo "PASS: $$i"; \
-	  else \
-	    echo "FAIL: $$i"; \
-	    failed=$$((failed + 1)); \
-	  fi; \
-	done; \
-	if [ "$$failed" != 0 ]; then \
-	  echo "$$failed out of $$total tests failed "; \
-	  exit 1; \
-	fi
-
-.PHONY: check installcheck