summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-03-20 14:37:39 +0000
committerNicholas Clark <nick@ccl4.org>2011-03-20 14:44:06 +0000
commit06345901345c6c93400e3bbd87694e86e9efb5f6 (patch)
tree3e061165f438f5c6685ce0e5f4a42e30d268c2e6
parentcb4dad7dd79eaa4aed61ef081ad4674eb7a7c358 (diff)
downloadperl-06345901345c6c93400e3bbd87694e86e9efb5f6.tar.gz
Avoid warnings in pat_advanced.t in the logic for skipping a test.
Also, change the skip added in 2feceb76bc07c897 to a todo skip.
-rw-r--r--t/re/pat_advanced.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/re/pat_advanced.t b/t/re/pat_advanced.t
index ad0a6c654b..b102188f55 100644
--- a/t/re/pat_advanced.t
+++ b/t/re/pat_advanced.t
@@ -2112,9 +2112,9 @@ EOP
ok(1, $message); # If it didn't crash, it worked.
}
- SKIP: { # Was looping
- skip('Triggers thread clone SEGV. See #86550')
- if $::running_as_thread;
+ TODO: { # Was looping
+ todo_skip('Triggers thread clone SEGV. See #86550')
+ if $::running_as_thread && $::running_as_thread;
watchdog(10); # Use a bigger value for busy systems
like("\x{00DF}", qr/[\x{1E9E}_]*/i, "\"\\x{00DF}\" =~ /[\\x{1E9E}_]*/i was looping");
}