223fbe644a
Fix a socket length failure on the OSX builders
16 lines
297 B
Makefile
16 lines
297 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=$(notdir $(basename $1)) TESTS_ENVIRONMENT="$(tests-environment)" mk/run_test.sh $1
|
||
|
||
endef
|
||
|
||
.PHONY: check installcheck
|