This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move all the xxxpvs() macros to handy.h.
[perl5.git] / ext / B / t / bblock.t
CommitLineData
7e521e02
MS
1#!./perl -Tw
2
3BEGIN {
5638aaac
SM
4 if ($ENV{PERL_CORE}){
5 chdir('t') if -d 't';
6 @INC = ('.', '../lib');
7 } else {
8 unshift @INC, 't';
9 }
9cd8f857
NC
10 require Config;
11 if (($Config::Config{'extensions'} !~ /\bB\b/) ){
12 print "1..0 # Skip -- Perl configured without B module\n";
13 exit 0;
14 }
7e521e02
MS
15}
16
17use Test::More tests => 1;
18
19use_ok('B::Bblock', qw(find_leaders));
20
21# Someone who understands what this module does, please fill this out.