2016-11-26 01:37:43 +02:00
|
|
|
|
# Run program $1 as part of ‘make installcheck’.
|
2020-07-02 18:15:02 +03:00
|
|
|
|
|
|
|
|
|
test-deps =
|
|
|
|
|
|
2014-02-04 12:02:49 +02:00
|
|
|
|
define run-install-test
|
2013-12-10 16:54:34 +02:00
|
|
|
|
|
2020-07-02 12:34:15 +03:00
|
|
|
|
.PHONY: $1.test
|
2020-07-02 18:15:02 +03:00
|
|
|
|
$1.test: $1 $(test-deps)
|
2022-12-16 03:17:08 +02:00
|
|
|
|
@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
|
2013-12-10 16:54:34 +02:00
|
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
2023-07-10 05:24:51 +03:00
|
|
|
|
define run-install-test-group
|
|
|
|
|
|
|
|
|
|
.PHONY: $1.test-group
|
|
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
2013-12-10 16:54:34 +02:00
|
|
|
|
.PHONY: check installcheck
|
2021-10-02 13:09:30 +03:00
|
|
|
|
|
|
|
|
|
print-top-help += \
|
|
|
|
|
echo " check: Run unit tests"; \
|
|
|
|
|
echo " installcheck: Run functional tests";
|