diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-06-04 16:41:23 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-06-04 18:14:53 -0700 |
commit | 2b2e870525cc613cf38ea39455b32d4a7e39a430 (patch) | |
tree | 589f6aaad7a4a0e1fb565bc0305a51a2f61e4219 | |
parent | d4d03940c58a0177edb93c8854929856e9975bf9 (diff) | |
download | perl-2b2e870525cc613cf38ea39455b32d4a7e39a430.tar.gz |
stash.t: Un-TODO passing tests
-rw-r--r-- | t/op/stash.t | 5 | ||||
-rw-r--r-- | t/uni/stash.t | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/t/op/stash.t b/t/op/stash.t index 3c315255c6..99e44da030 100644 --- a/t/op/stash.t +++ b/t/op/stash.t @@ -280,11 +280,8 @@ fresh_perl_is( 'ref() returns the same thing when an object’s stash is moved'; ::like "$obj", qr "^rile=ARRAY\(0x[\da-f]+\)\z", 'objects stringify the same way when their stashes are moved'; - { - local $::TODO = $Config{useithreads} ? "fails under threads" : undef; - ::is eval '__PACKAGE__', 'rile', + ::is eval '__PACKAGE__', 'rile', '__PACKAGE__ returns the same when the current stash is moved'; - } # Now detach it completely from the symtab, making it effect- # ively anonymous diff --git a/t/uni/stash.t b/t/uni/stash.t index 168b93c874..bacd69d1e2 100644 --- a/t/uni/stash.t +++ b/t/uni/stash.t @@ -266,11 +266,8 @@ plan( tests => 58 ); 'ref() returns the same thing when an object’s stash is moved'; ::like "$obj", qr "^rìle=ARRAY\(0x[\da-f]+\)\z", 'objects stringify the same way when their stashes are moved'; - { - local $::TODO = $Config{useithreads} ? "fails under threads" : undef; - ::is eval '__PACKAGE__', 'rìle', + ::is eval '__PACKAGE__', 'rìle', '__PACKAGE__ returns the same when the current stash is moved'; - } # Now detach it completely from the symtab, making it effect- # ively anonymous |