]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commit
Skip a destructor test on perl 5.6 in t/74-uid-validate.t
authorVincent Pit <vince@profvince.com>
Mon, 10 Oct 2011 20:04:36 +0000 (22:04 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 10 Oct 2011 20:05:04 +0000 (22:05 +0200)
commit781b4bd63a83b8363268f878964c1a90d76c3d70
tree067eeb3e7eb23098a4ad5deb3402caaa94c323e5
parent444d78492ecace2f652fae44f177516b37bb18c0
Skip a destructor test on perl 5.6 in t/74-uid-validate.t

An object destructor is always fired last before 5.8. For example,

    our $y = 1;
    sub X::DESTROY { print $y }
    {
     local $y = 2;
     my $x = bless [], "X"
    }

will print 1 on 5.6 and 2 on 5.8.
t/74-uid-validate.t