summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2023-01-09 17:56:46 +0100
committerYves Orton <demerphq@gmail.com>2023-01-09 20:17:20 +0100
commit239136505f79898ae40cd38f706babe0f23f0993 (patch)
treeed7d2af8d1b28a6a72f8c026b670454ca7513334
parent829184bb4919676d24f8abe4fc61458be24143e6 (diff)
downloadperl-239136505f79898ae40cd38f706babe0f23f0993.tar.gz
Makefile.SH - fix 'reonly' Makefile target to test ext/re/t/*.t properly
The .. in front of the ext/ required as the list is constructed relative to the t/ directory of the repo. This also enables "full steam ahead" mode when parallel jobs are enabled. This target only tests a subset of our functionality, running in normal mode and separating core tests from ext/ tests just slows things down for no value.
-rwxr-xr-xMakefile.SH2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH
index e3f901e5d7..b3a0c50d7b 100755
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -1667,7 +1667,7 @@ test_harness_notty: test_prep
HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
test_reonly test-reonly: test_prep_reonly
- TEST_ARGS='re/*.t ext/re/t/*.t' TESTFILE=harness $(RUN_TESTS) choose
+ TEST_ARGS='re/*.t ../ext/re/t/*.t' PERL_TEST_HARNESS_ASAP=1 TESTFILE=harness $(RUN_TESTS) choose
# Porting tests (well-formedness of pod, manifest, etc)