diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-03-20 14:37:39 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-03-20 14:44:06 +0000 |
commit | 06345901345c6c93400e3bbd87694e86e9efb5f6 (patch) | |
tree | 3e061165f438f5c6685ce0e5f4a42e30d268c2e6 /t/re | |
parent | cb4dad7dd79eaa4aed61ef081ad4674eb7a7c358 (diff) | |
download | perl-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.
Diffstat (limited to 't/re')
-rw-r--r-- | t/re/pat_advanced.t | 6 |
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"); } |