Change 12075 by sky@sky-borderline on 2001/09/18 19:29:37
[PATCH perl@12071] two test failures
From: Rafael Garcia-Suarez <[EMAIL PROTECTED]>
Message-ID: <20010918221702.A17408@rafael>
partly applied, #12074 already fixed half the patch
Affected files ...
... //depot/perl/ext/threads/t/basic.t#3 edit
Differences ...
==== //depot/perl/ext/threads/t/basic.t#3 (xtext) ====
Index: perl/ext/threads/t/basic.t
--- perl/ext/threads/t/basic.t.~1~ Tue Sep 18 13:45:05 2001
+++ perl/ext/threads/t/basic.t Tue Sep 18 13:45:05 2001
@@ -11,6 +11,16 @@
#########################
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+ require Config; import Config;
+ unless ($Config{'useithreads'}) {
+ print "1..0 # Skip: no useithreads\n";
+ exit 0;
+ }
+}
+
use ExtUtils::testlib;
use strict;
BEGIN { print "1..12\n" };
End of Patch.