summaryrefslogtreecommitdiffstats
path: root/xt/author/leaks-debug.t
diff options
context:
space:
mode:
Diffstat (limited to 'xt/author/leaks-debug.t')
-rw-r--r--xt/author/leaks-debug.t8
1 files changed, 0 insertions, 8 deletions
diff --git a/xt/author/leaks-debug.t b/xt/author/leaks-debug.t
index 12a4f41..7435318 100644
--- a/xt/author/leaks-debug.t
+++ b/xt/author/leaks-debug.t
@@ -73,13 +73,9 @@ use Symbol;
no_leaks_ok {
$foo->add_symbol('&code_init' => sub { "foo" });
} "add_symbol code doesn't leak";
- { local $TODO = $Package::Stash::IMPLEMENTATION eq 'PP'
- ? "the pure perl implementation leaks here somehow"
- : undef;
no_leaks_ok {
$foo->add_symbol('io_init' => Symbol::geniosym);
} "add_symbol io doesn't leak";
- }
is(exception {
is(Foo->code_init, 'foo', "sub installed correctly")
}, undef, "code_init exists");
@@ -191,10 +187,6 @@ use Symbol;
}
{
- local $TODO = ($Package::Stash::IMPLEMENTATION eq 'PP'
- && $Carp::VERSION ge '1.17')
- ? "Carp is leaky on 5.12.2 apparently?"
- : undef;
my $foo = Package::Stash->new('Foo');
no_leaks_ok {
eval { $foo->get_or_add_symbol('&blorg') };