diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-04-13 11:22:11 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-04-13 11:22:11 +0100 |
commit | ac0f141316dd2d480f004051c0f60946e2b6e87c (patch) | |
tree | efb8a9f8e397b56a54016736035354e81ff01134 /ext/B | |
parent | aa381260d040715959bedd55abd0e5e3686174bd (diff) | |
download | perl-ac0f141316dd2d480f004051c0f60946e2b6e87c.tar.gz |
Correct two other tests that apparently should be TODOs rather than SKIPs.
Diffstat (limited to 'ext/B')
-rw-r--r-- | ext/B/t/deparse.t | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/B/t/deparse.t b/ext/B/t/deparse.t index a1c4a9b7b6..2404202e37 100644 --- a/ext/B/t/deparse.t +++ b/ext/B/t/deparse.t @@ -550,8 +550,10 @@ do { '???'; !1; #### -# SKIP ? $Config::Config{useithreads} && "TODO doesn't work with threads" +# TODO ? $Config::Config{useithreads} && "doesn't work with threads" # 61 tests that shouldn't be constant folded +# It might be fundamentally impossible to make this work on ithreads, in which +# case the TODO should become a SKIP x() if $a; if ($a == 1) { x() } elsif ($b == 2) { z() } if (do { foo(); GLIPP }) { x() } @@ -574,8 +576,10 @@ warn O_CREAT; # 65 tests for deparsing imported constants that got deleted from the original namespace warn O_APPEND; #### -# SKIP ? $Config::Config{useithreads} && "TODO doesn't work with threads" +# TODO ? $Config::Config{useithreads} && "doesn't work with threads" # 66 tests for deparsing constants which got turned into full typeglobs +# It might be fundamentally impossible to make this work on ithreads, in which +# case the TODO should become a SKIP warn O_EXCL; eval '@Fcntl::O_EXCL = qw/affe tiger/;'; warn O_EXCL; |