use warnings;
no warnings 'once';
use Time::HiRes 'sleep';
+use Cwd 'getcwd';
$|++; # seems to be critical
print "1..$::TEST_COUNT\n";
sub run_torture {
- do 't/03torture.t';
+ do( ( "@{[ getcwd() ]}/t/03torture.t" =~ /^(.*)$/ )[0] );
die $@ if $@ ne '';
42;
}