mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
15 lines
275 B
Makefile
15 lines
275 B
Makefile
# 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=$1 TESTS_ENVIRONMENT="$(tests-environment)" mk/run_test.sh $1
|
||
|
||
endef
|
||
|
||
.PHONY: check installcheck
|