If we don't build B, we should skip all its tests.
[p5sagit/p5-mst-13.2.git] / ext / B / t / showlex.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     if ($^O eq 'MacOS') {
6         @INC = qw(: ::lib ::macos:lib);
7     } else {
8         @INC = '../lib';
9     }
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     }
15     require './test.pl';
16 }
17
18 $| = 1;
19 use warnings;
20 use strict;
21 use Config;
22 use B::Showlex ();
23
24 plan tests => 8;
25
26 my $verbose = @ARGV; # set if ANY ARGS
27
28 my $a;
29 my $Is_VMS = $^O eq 'VMS';
30 my $Is_MacOS = $^O eq 'MacOS';
31
32 my $path = join " ", map { qq["-I$_"] } @INC;
33 $path = '"-I../lib" "-Iperl_root:[lib]"' if $Is_VMS;   # gets too long otherwise
34 my $redir = $Is_MacOS ? "" : "2>&1";
35 my $is_thread = $Config{use5005threads} && $Config{use5005threads} eq 'define';
36
37 if ($is_thread) {
38     ok "# use5005threads: test skipped\n";
39 } else {
40     $a = `$^X $path "-MO=Showlex" -e "my \@one" $redir`;
41     like ($a, qr/sv_undef.*PVNV.*\@one.*sv_undef.*AV/s,
42           "canonical usage works");
43 }
44
45 # v1.01 tests
46
47 my ($na,$nb,$nc); # holds regex-strs
48 sub padrep {
49     my $varname = shift;
50     return "PVNV \\\(0x[0-9a-fA-F]+\\\) \\$varname\n";
51 }
52
53 my $out = runperl ( switches => ["-MO=Showlex"], 
54                    prog => 'my ($a,$b)', stderr => 1 );
55 $na = padrep('$a');
56 $nb = padrep('$b');
57 like ($out, qr/1: $na/ms, 'found $a in "my ($a,$b)"');
58 like ($out, qr/2: $nb/ms, 'found $b in "my ($a,$b)"');
59
60 print $out if $verbose;
61
62 our $buf = 'arb startval';
63 my $ak = B::Showlex::walk_output (\$buf);
64
65 my $walker = B::Showlex::compile(sub { my ($foo,$bar) });
66 $walker->();
67 $na = padrep('$foo');
68 $nb = padrep('$bar');
69 like ($buf, qr/1: $na/ms, 'found $foo in "sub { my ($foo,$bar) }"');
70 like ($buf, qr/2: $nb/ms, 'found $bar in "sub { my ($foo,$bar) }"');
71
72 print $buf if $verbose;
73
74 $ak = B::Showlex::walk_output (\$buf);
75
76 $walker = B::Showlex::compile(sub { my ($scalar,@arr,%hash) });
77 $walker->();
78 $na = padrep('$scalar');
79 $nb = padrep('@arr');
80 $nc = padrep('%hash');
81 like ($buf, qr/1: $na/ms, 'found $scalar in "sub { my ($scalar,@arr,%hash) }"');
82 like ($buf, qr/2: $nb/ms, 'found @arr    in "sub { my ($scalar,@arr,%hash) }"');
83 like ($buf, qr/3: $nc/ms, 'found %hash   in "sub { my ($scalar,@arr,%hash) }"');
84
85 print $buf if $verbose;
86
87 my $asub = sub {
88     my ($self,%props)=@_;
89     my $total;
90     { # inner block vars
91         my (@fib)=(1,2);
92         for (my $i=2; $i<10; $i++) {
93             $fib[$i] = $fib[$i-2] + $fib[$i-1];
94         }
95         for my $i(0..10) {
96             $total += $i;
97         }
98     }
99 };
100 $walker = B::Showlex::compile($asub, '-newlex');
101 $walker->();
102
103 $walker = B::Concise::compile($asub, '-exec');
104 $walker->();
105
106
107 print $buf if $verbose;