With the perl5.00503 delivered standard with Solaris 8, t/harness
issues the following warning:

    glob failed (child exited with status 1) at -e line 1.

The problem is apparently the csh-based glob trying to descend into
the non-existent 't/misc' directory.

A reasonable fix is to omit searching in t/misc until such time as 
the directory actually exists.

--- parrot-current/t/harness    Sun Sep 16 12:21:16 2001
+++ parrot-andy/t/harness       Wed Nov 28 11:34:33 2001
@@ -3,5 +3,5 @@
 use strict;
 use Test::Harness qw(runtests);
 
-my @tests = map { glob( "t/$_/*.t" ) } ( qw(op misc) );
+my @tests = map { glob( "t/$_/*.t" ) } ( qw(op) );
 runtests( @tests );

-- 
    Andy Dougherty              [EMAIL PROTECTED]
    Dept. of Physics
    Lafayette College, Easton PA 18042

Reply via email to