Bump $B::Deparse::VERSION
[p5sagit/p5-mst-13.2.git] / ext / B / t / showlex.t
CommitLineData
87a42246 1#!./perl
2
3BEGIN {
88587957 4 chdir 't' if -d 't';
87a42246 5 if ($^O eq 'MacOS') {
6 @INC = qw(: ::lib ::macos:lib);
88587957 7 } else {
8 @INC = '../lib';
87a42246 9 }
9cd8f857 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 }
cc02ea56 15 require './test.pl';
87a42246 16}
17
cc02ea56 18$| = 1;
87a42246 19use warnings;
20use strict;
21use Config;
cc02ea56 22use B::Showlex ();
87a42246 23
cc02ea56 24plan tests => 8;
87a42246 25
cc02ea56 26my $verbose = @ARGV; # set if ANY ARGS
87a42246 27
28my $a;
29my $Is_VMS = $^O eq 'VMS';
30my $Is_MacOS = $^O eq 'MacOS';
31
32my $path = join " ", map { qq["-I$_"] } @INC;
d0c1fe9a 33$path = '"-I../lib" "-Iperl_root:[lib]"' if $Is_VMS; # gets too long otherwise
87a42246 34my $redir = $Is_MacOS ? "" : "2>&1";
35my $is_thread = $Config{use5005threads} && $Config{use5005threads} eq 'define';
36
37if ($is_thread) {
cc02ea56 38 ok "# use5005threads: test skipped\n";
87a42246 39} else {
56034a21 40 $a = `$^X $path "-MO=Showlex" -e "my \@one" $redir`;
cc02ea56 41 like ($a, qr/sv_undef.*PVNV.*\@one.*sv_undef.*AV/s,
42 "canonical usage works");
87a42246 43}
cc02ea56 44
45# v1.01 tests
46
47my ($na,$nb,$nc); # holds regex-strs
48sub padrep {
49 my $varname = shift;
50 return "PVNV \\\(0x[0-9a-fA-F]+\\\) \\$varname\n";
51}
52
53my $out = runperl ( switches => ["-MO=Showlex"],
54 prog => 'my ($a,$b)', stderr => 1 );
55$na = padrep('$a');
56$nb = padrep('$b');
57like ($out, qr/1: $na/ms, 'found $a in "my ($a,$b)"');
58like ($out, qr/2: $nb/ms, 'found $b in "my ($a,$b)"');
59
60print $out if $verbose;
61
62our $buf = 'arb startval';
63my $ak = B::Showlex::walk_output (\$buf);
64
65my $walker = B::Showlex::compile(sub { my ($foo,$bar) });
66$walker->();
67$na = padrep('$foo');
68$nb = padrep('$bar');
69like ($buf, qr/1: $na/ms, 'found $foo in "sub { my ($foo,$bar) }"');
70like ($buf, qr/2: $nb/ms, 'found $bar in "sub { my ($foo,$bar) }"');
71
72print $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');
81like ($buf, qr/1: $na/ms, 'found $scalar in "sub { my ($scalar,@arr,%hash) }"');
82like ($buf, qr/2: $nb/ms, 'found @arr in "sub { my ($scalar,@arr,%hash) }"');
83like ($buf, qr/3: $nc/ms, 'found %hash in "sub { my ($scalar,@arr,%hash) }"');
84
85print $buf if $verbose;
86
87my $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
107print $buf if $verbose;