t/op tests shouldn't be using Test::More for exactly this reason. Use test.pl instead. --- t/op/cproto.t 2003/11/05 14:23:51 1.1 +++ t/op/cproto.t 2003/11/05 14:25:02 @@ -6,7 +6,9 @@ @INC = '../lib'; } -use Test::More tests => 234; +BEGIN { require './test.pl'; } +plan tests => 234; + while (<DATA>) { chomp; my ($keyword, $proto) = split; On Wed, Nov 05, 2003 at 05:45:47AM -0800, Gisle Aas wrote: > t/op/cproto..........Can't load module threads, dynamic loading not available in this perl. > (You may need to build a new perl executable which either supports > dynamic loading or has the threads module statically linked into it.) > at ../lib/Test/Builder.pm line 20 > Compilation failed in require at ../lib/Test/Builder.pm line 20. > BEGIN failed--compilation aborted at ../lib/Test/Builder.pm line 28. > Compilation failed in require at ../lib/Test/More.pm line 6. > BEGIN failed--compilation aborted at ../lib/Test/More.pm line 6. > Compilation failed in require at op/cproto.t line 9. > BEGIN failed--compilation aborted at op/cproto.t line 9. > FAILED at test 0 -- Michael G Schwern schwern@pobox.com http://www.pobox.com/~schwern/ Worship the sig fileThread Previous | Thread Next