blob: 2e39bb694988f7954a5a21888b8d40841d9768ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Run program $1 as part of ‘make installcheck’.
test-deps =
define run-install-test
installcheck: $1.test
.PHONY: $1.test
$1.test: $1 $(test-deps)
@env TEST_NAME=$(notdir $(basename $1)) TESTS_ENVIRONMENT="$(tests-environment)" mk/run_test.sh $1
endef
.PHONY: check installcheck
|