From: Matthias Paulmier Date: Fri, 27 Jul 2018 14:20:33 +0000 (+0200) Subject: Add extension for perl tests using Test::Simple X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3105be57cbbb026b8cb9ad03ccac2f9f0b7e2b9;p=thirdparty%2Fautomake.git Add extension for perl tests using Test::Simple This is a temporary extension as we will transition all tests to use Test::Simple. --- diff --git a/t/local.mk b/t/local.mk index 0d0aee6ad..14b3e61b3 100644 --- a/t/local.mk +++ b/t/local.mk @@ -21,13 +21,15 @@ # Run the tests with a proper shell detected at configure time. LOG_COMPILER = ./pre-inst-env $(AM_TEST_RUNNER_SHELL) -TEST_EXTENSIONS = .pl .sh .tap +TEST_EXTENSIONS = .pl .plt .sh .tap SH_LOG_COMPILER = $(LOG_COMPILER) TAP_LOG_COMPILER = $(LOG_COMPILER) PL_LOG_COMPILER = ./pre-inst-env $(PERL) +PLT_LOG_COMPILER = $(PL_LOG_COMPILER) AM_PL_LOG_FLAGS = -Mstrict -w TAP_LOG_DRIVER = AM_TAP_AWK='$(AWK)' $(SHELL) $(srcdir)/lib/tap-driver.sh +PLT_LOG_DRIVER = $(TAP_LOG_DRIVER) AM_TAP_LOG_DRIVER_FLAGS = --merge