summaryrefslogtreecommitdiff
path: root/ext/B/t/sv_stash.t
blob: e9abf4d55d9744bb698b242e5c0709105145b680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!./perl -w

BEGIN {
    unshift @INC, 't';
    require Config;
    if ( ( $Config::Config{'extensions'} !~ /\bB\b/ ) ) {
        print "1..0 # Skip -- Perl configured without B module\n";
        exit 0;
    }
    require 'test.pl';
}
plan 1;

# RT #126410 = used to coredump when doing SvSTASH on %version::

TODO: {
    fresh_perl_is(
        'use B; version->new("v5.22.0"); $s = B::svref_2object(\%version::); $s->SvSTASH; print "ok\n"',
        "ok\n", { stderr => 1 }, 'RT #126410 - SvSTASH against %version::'
    );
}