From 5184ff4e5a99c8e3df2bcdedd55402f17da7399d Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sat, 9 Mar 2002 01:23:16 +0000 Subject: [PATCH] Deglitch from Rafael. p4raw-id: //depot/perl@15126 --- ext/B/t/lint.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/B/t/lint.t b/ext/B/t/lint.t index f20d04d..142e470 100644 --- a/ext/B/t/lint.t +++ b/ext/B/t/lint.t @@ -40,7 +40,8 @@ RESULT SKIP : { use Config; - skip("Doesn't work with threaded perls",9) if $Config{useithreads}; + skip("Doesn't work with threaded perls",9) + if $Config{useithreads} || $Config{use5005threads}; runlint 'implicit-read', '1 for @ARGV', <<'RESULT', 'implicit-read in foreach'; Implicit use of $_ in foreach at -e line 1 -- 2.7.4