summaryrefslogtreecommitdiff
path: root/Makefile.SH
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-04-12 10:24:42 +0200
committerYves Orton <demerphq@gmail.com>2022-04-13 23:59:16 +0800
commit312e19dd11f83d1e87c9502ef8da108ffbaf5454 (patch)
tree4981bf5832e665a0d736b4e086bd795755ff5f2e /Makefile.SH
parentaa2a6ac2998cc32b06ced91196387420610dac07 (diff)
downloadperl-312e19dd11f83d1e87c9502ef8da108ffbaf5454.tar.gz
Makefile.SH - use globs in the test_reonly target
Switch to globs for the test_reonly target as wildcards are easier to read and understand and familiar to a wider audience and don't have escape issues associated with the -re option.
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-xMakefile.SH2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH
index 651e70f4da..d3d4258890 100755
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -1658,7 +1658,7 @@ test_harness_notty: test_prep
HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
test_reonly test-reonly: test_prep_reonly
- TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
+ TEST_ARGS='re/*.t ext/re/t/*.t' TESTFILE=harness $(RUN_TESTS) choose
# Porting tests (well-formedness of pod, manifest, etc)