summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMakefile.SH2
-rw-r--r--t/harness2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH
index d3d4258890..e6cb0e0284 100755
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -1664,7 +1664,7 @@ test_reonly test-reonly: test_prep_reonly
# Porting tests (well-formedness of pod, manifest, etc)
test_porting test-porting: test_prep
- cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
+ TEST_ARGS='porting/*.t lib/diagnostics.t' TESTFILE=harness $(RUN_TESTS) choose
!NO!SUBS!
diff --git a/t/harness b/t/harness
index 64947a7d2e..c303d13c73 100644
--- a/t/harness
+++ b/t/harness
@@ -93,7 +93,7 @@ if ($ENV{HARNESS_OPTIONS}) {
if (@ARGV) {
# If you want these run in speed order, just use prove
- # Note: we use glob on even on *nix and not just on Windows
+ # Note: we use glob even on *nix and not just on Windows
# because arguments might be passed in via the TEST_ARGS
# env var where they wont be expanded by the shell.
@tests = map(glob($_),@ARGV);