summaryrefslogtreecommitdiffstats
path: root/t/20-leaks.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-11-15 13:05:40 -0600
committerJesse Luehrs <doy@tozt.net>2010-11-15 13:05:40 -0600
commit9e60e8ff0381023d5e49388d32bd04748cb63ec9 (patch)
treee111047e8b1301ce259972767e5dc53facc42672 /t/20-leaks.t
parentaf3e1f5e6280e1212d8f116cb7f72391c9e43a18 (diff)
downloadpackage-stash-xs-9e60e8ff0381023d5e49388d32bd04748cb63ec9.tar.gz
package-stash-xs-9e60e8ff0381023d5e49388d32bd04748cb63ec9.zip
update some test things
Diffstat (limited to 't/20-leaks.t')
-rw-r--r--t/20-leaks.t6
1 files changed, 4 insertions, 2 deletions
diff --git a/t/20-leaks.t b/t/20-leaks.t
index e97d7d6..570b56e 100644
--- a/t/20-leaks.t
+++ b/t/20-leaks.t
@@ -123,7 +123,9 @@ use Symbol;
@{$foo->get_or_add_symbol('@ISA')} = @super;
$foo->get_or_add_symbol('$glob');
} "get_or_add_symbol doesn't leak";
- { local $TODO = $] < 5.010 ? "undef scalars aren't visible on 5.8" : undef;
+ { local $TODO = ($] < 5.010 || $Package::Stash::IMPLEMENTATION eq 'PP')
+ ? "undef scalars aren't visible on 5.8, or from pure perl at all"
+ : undef;
ok($foo->has_symbol('$glob'));
}
is(ref($foo->get_symbol('$glob')), 'SCALAR');
@@ -157,7 +159,7 @@ use Symbol;
$foo->get_all_symbols('SCALAR');
$foo->get_all_symbols('CODE');
$blah->get_all_symbols('CODE');
- } "list_all_symbols doesn't leak";
+ } "get_all_symbols doesn't leak";
}
# mimic CMOP::create_anon_class