p4raw-id: //depot/perl@8843
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
+ unless ($Config{'d_fork'}) {
+ print "1..0 # Skip: no fork\n";
+ exit 0;
+ }
}
my $STDOUT = './results-0';
"");
print "# ", $T-1, " tests total.\n";
+
+END {
+ 1 while unlink $STDOUT;
+ 1 while unlink $STDERR;
+}