aboutsummaryrefslogtreecommitdiff
path: root/mk/tests.mk
diff options
context:
space:
mode:
authorQyriad <qyriad@qyriad.me>2024-05-07 13:34:36 -0600
committerQyriad <qyriad@qyriad.me>2024-05-07 17:04:30 -0600
commitb9be46fb3115dffcd5cdaa62523bd025c7342e42 (patch)
treee95c1b36bf9797ce725481246980cf7c353f829d /mk/tests.mk
parentd184981af019f786df8ddb1b39527df30c62b262 (diff)
remove the autoconf+Make buildsystem
We're not using it anymore. Any leftover bugs in the Meson buildsystem are now just bugs. Closes #249. Change-Id: I0465a0c37ae819f94d40e7829f5bff046aa63d73
Diffstat (limited to 'mk/tests.mk')
-rw-r--r--mk/tests.mk27
1 files changed, 0 insertions, 27 deletions
diff --git a/mk/tests.mk b/mk/tests.mk
deleted file mode 100644
index ec8128bdf..000000000
--- a/mk/tests.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-# Run program $1 as part of ‘make installcheck’.
-
-test-deps =
-
-define run-install-test
-
- .PHONY: $1.test
- $1.test: $1 $(test-deps)
- @env BASH=$(bash) $(bash) mk/run-test.sh $1 < /dev/null
-
- .PHONY: $1.test-debug
- $1.test-debug: $1 $(test-deps)
- @env BASH=$(bash) $(bash) mk/debug-test.sh $1 < /dev/null
-
-endef
-
-define run-install-test-group
-
- .PHONY: $1.test-group
-
-endef
-
-.PHONY: check installcheck
-
-print-top-help += \
- echo " check: Run unit tests"; \
- echo " installcheck: Run functional tests";