summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-02-25 21:46:35 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-02-25 21:46:35 +0000
commitf1c0db8dbc906cad6c85874be33c7969497df1cd (patch)
tree47bb35826b88df8a906e9799c987f87a91563f6f /t
parent51c1089b32b9be8d5242f51a530e4b3118896e71 (diff)
parent33b839e22819d9ddfd0fa565289e5af7b6262ec9 (diff)
downloadperl-f1c0db8dbc906cad6c85874be33c7969497df1cd.tar.gz
[win32] integrate mainline
p4raw-id: //depot/win32/perl@588
Diffstat (limited to 't')
-rw-r--r--t/lib/thread.t2
-rw-r--r--t/op/nothread.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/thread.t b/t/lib/thread.t
index 9810ae48d9..b8e1b387ba 100644
--- a/t/lib/thread.t
+++ b/t/lib/thread.t
@@ -4,7 +4,7 @@ BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require Config; import Config;
- if ($Config{'ccflags'} !~ /USE_THREADS\b/) {
+ if (! $Config{'usethreads'}) {
print "1..0\n";
exit 0;
}
diff --git a/t/op/nothread.t b/t/op/nothread.t
index 7d42d276c8..a0d444d90b 100644
--- a/t/op/nothread.t
+++ b/t/op/nothread.t
@@ -9,7 +9,7 @@ BEGIN
@INC = "../lib";
require Config;
import Config;
- if ($Config{'ccflags'} =~ /USE_THREADS\b/)
+ if ($Config{'usethreads'})
{
print "1..0\n";
exit 0;