From 291a3abfa339889ca02abb7a0008255d9bc34cbf Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 27 Oct 2013 13:42:20 -0700 Subject: [PATCH] Add a call to $TESTS_ENVIRONMENT in tests: So that g_tester-based tests can be set up to use Guile. --- test-templates/Makefile.decl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-templates/Makefile.decl b/test-templates/Makefile.decl index dcc69c1ec0..0f163a3238 100644 --- a/test-templates/Makefile.decl +++ b/test-templates/Makefile.decl @@ -23,7 +23,7 @@ endif # test-nonrecursive: run tests only in cwd test-nonrecursive: ${TEST_PROGS} if !PLATFORM_WIN32 - @test -z "${TEST_PROGS}" || MALLOC_CHECK_=2 MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256)) ${GTESTER} --verbose ${TEST_PROGS} + @test -z "${TEST_PROGS}" || MALLOC_CHECK_=2 MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256)) ${TESTS_ENVIRONMENT} ${GTESTER} --verbose ${TEST_PROGS} endif # test-report: run tests in subdirs and generate report