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 =
|
|
|
|
|
|
2023-05-16 01:13:11 +03:00
|
|
|
|
define run-install-test $1
|
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
|
|
|
|
|
|
|
|
|
|
.PHONY: check installcheck
|
2021-10-02 13:09:30 +03:00
|
|
|
|
|
|
|
|
|
print-top-help += \
|
|
|
|
|
echo " check: Run unit tests"; \
|
|
|
|
|
echo " installcheck: Run functional tests";
|