summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-10-20 02:36:21 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-10-20 02:36:21 +0000
commite089c33fa0594b6903e0709ffd95e3434fc2707a (patch)
tree20186931c2aa6ed21381484f1f26b83db030518a /t
parentae1c8c834e40d14abc2481f3159cae29d6d2bc25 (diff)
downloadperl-e089c33fa0594b6903e0709ffd95e3434fc2707a.tar.gz
Wording tweaks.
p4raw-id: //depot/perl@12521
Diffstat (limited to 't')
-rwxr-xr-xt/TEST18
1 files changed, 8 insertions, 10 deletions
diff --git a/t/TEST b/t/TEST
index 98fc8dcd17..b27bb072e3 100755
--- a/t/TEST
+++ b/t/TEST
@@ -306,23 +306,21 @@ EOT
warn "Failed $bad test scripts out of $files, $pct% okay.\n";
}
warn <<'SHRDLU';
- ### Since not all tests were successful, you may want to run some
- ### of them individually and examine any diagnostic messages they
- ### produce. See the INSTALL document's section on "make test".
+ ### Since not all tests were successful, you may want to run some of
+ ### them individually and examine any diagnostic messages they produce.
+ ### See the INSTALL document's section on "make test".
SHRDLU
warn <<'SHRDLU' if $good / $total > 0.8;
- ### Since most tests were successful you have a good chance
- ### to get information better granularity by running
+ ### You have a good chance to get more information by running
### ./perl harness
- ### in the 't' directory.
+ ### in the 't' directory since most (>=80%) of the tests succeeded.
SHRDLU
use Config;
if ($Config{ldlibpthname}) {
warn <<SHRDLU;
- ### Since you seem to have a dynamic library search path,
- ### $Config{ldlibpthname}, you probably should set that
- ### to point to the build directory before running the harness.
- ### Depending on your shell style:
+ ### You may have to set your dynamic library search path,
+ ### $Config{ldlibpthname}, to point to the build directory
+ ### before running the harness-- depending on your shell style:
### setenv $Config{ldlibpthname} `pwd`; cd t; ./perl harness
### $Config{ldlibpthname}=`pwd`; export $Config{ldlibpthname}; cd t; ./perl harness
### export $Config{ldlibpthname}=`pwd`; cd t; ./perl harness