diff options
author | David Mitchell <davem@iabyn.com> | 2011-01-20 16:30:55 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2011-01-21 13:46:02 +0000 |
commit | 79c861242b428940e97f668b35b0faeb25a2b9bb (patch) | |
tree | 3adb7f48c45b720787bf47afe11e82eaab486ed8 /ext | |
parent | e777a9142954feba63c48eced348e969729a0072 (diff) | |
download | perl-79c861242b428940e97f668b35b0faeb25a2b9bb.tar.gz |
XS-APItest/t/caller.t: mark two passing tests
There are four TODO tests in caller.t, relating to the hints hash returned
under the debugger. Since 20439bc77dfeec46d94a15cf108446039e26c995, two
of these tests has started to pass. I don't understand this area enough
to know whether that commit *should* have made them pass, but it
seems fairly consistent. So un-TODO just those two.
This means that under the debugger, we now expect to get a hints hash, but
that its contents are still wrong.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/XS-APItest/t/caller.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/XS-APItest/t/caller.t b/ext/XS-APItest/t/caller.t index d3365ffec0..d7769e978a 100644 --- a/ext/XS-APItest/t/caller.t +++ b/ext/XS-APItest/t/caller.t @@ -27,6 +27,7 @@ sub try_caller { is_deeply \@c, [ @args, ($hhv) x 3 ], "caller_cx for $n"; if (defined $hhv) { + local $TODO; # these two work ok under the bebugger ok defined $hh, "...with defined hinthash"; is reftype $hh, "HASH", "...which is a HASH"; } |