bleadperl perldebug.pod: mention perldebtut.pod
[p5sagit/p5-mst-13.2.git] / t / TEST
diff --git a/t/TEST b/t/TEST
index e34e77e..d558749 100755 (executable)
--- a/t/TEST
+++ b/t/TEST
@@ -5,6 +5,10 @@
 
 $| = 1;
 
+# Let tests know they're running in the perl core.  Useful for modules
+# which live dual lives on CPAN.
+$ENV{PERL_CORE} = 1;
+
 # Cheesy version of Getopt::Std.  Maybe we should replace it with that.
 if ($#ARGV >= 0) {
     foreach my $idx (0..$#ARGV) {
@@ -301,36 +305,40 @@ EOT
        else {
            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".
-   ### If you are testing the compiler, then ignore this message
-   ### and run
-   ###      ./perl harness
-   ### in the directory ./t.
-SHRDLU
-       warn <<'SHRDLU' if $good / $total > 0.8;
-   ###
-   ### Since most tests were successful, you have a good chance to
-   ### get information with better granularity by running
+       warn <<'SHRDLU_1';
+   ### 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_1
+       warn <<'SHRDLU_2' if $good / $total > 0.8;
+   ### You have a good chance to get more information by running
    ###     ./perl harness
-   ### in directory ./t.
-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:
-   ###     setenv $Config{ldlibpthname} `pwd`; cd t; ./perl harness
-   ### (for csh-style shells) or:
-   ###     $Config{ldlibpthname}=`pwd`; export $Config{ldlibpthname}; cd t; ./perl harness
-   ### (for traditional Bourne-style shells) or:
-   ###     export $Config{ldlibpthname}=`pwd`; cd t; ./perl harness
-   ### (for ksh-style shells, like zsh).
-SHRDLU
+   ### in the 't' directory since most (>=80%) of the tests succeeded.
+SHRDLU_2
+        if (eval {require Config; import Config; 1}) {
+           if (my $p = $Config{ldlibpthname}) {
+               warn <<SHRDLU_3;
+   ### You may have to set your dynamic library search path,
+   ### $p, to point to the build directory:
+SHRDLU_3
+                if (exists $ENV{$p} && $ENV{$p} ne '') {
+                   warn <<SHRDLU_4a;
+   ###     setenv $p `pwd`:\$$p; cd t; ./perl harness
+   ###     $p=`pwd`:\$$p; export $p; cd t; ./perl harness
+   ###     export $p=`pwd`:\$$p; cd t; ./perl harness
+SHRDLU_4a
+                } else {
+                   warn <<SHRDLU_4b;
+   ###     setenv $p `pwd`; cd t; ./perl harness
+   ###     $p=`pwd`; export $p; cd t; ./perl harness
+   ###     export $p=`pwd`; cd t; ./perl harness
+SHRDLU_4b
+                }    
+               warn <<SHRDLU_5;
+   ### for csh-style shells, like tcsh; or for traditional/modern
+   ### Bourne-style shells, like bash, ksh, and zsh, respectively.
+SHRDLU_5
+            }
        }
     }
     ($user,$sys,$cuser,$csys) = times;