blob: f21f4891e47b8a25f098d93fd39f96d269bd5a80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!./perl
BEGIN {
chdir 't' if -d 't';
if ($^O eq 'MacOS') {
@INC = qw(: ::lib ::macos:lib);
} else {
@INC = '.';
push @INC, '../lib';
}
}
$| = 1;
use warnings;
use strict;
use Config;
print "1..2\n";
my $test = 1;
sub ok { print "ok $test\n"; $test++ }
use B;
package Testing::Symtable;
use vars qw($This @That %wibble $moo %moo);
my $not_a_sym = 'moo';
sub moo { 42 }
sub car { 23 }
package Testing::Symtable::Foo;
sub yarrow { "Hock" }
package Testing::Symtable::Bar;
sub hock { "yarrow" }
package main;
use vars qw(%Subs);
local %Subs = ();
B::walksymtable(\%Testing::Symtable::, 'find_syms', sub { $_[0] =~ /Foo/ },
'Testing::Symtable::');
sub B::GV::find_syms {
my($symbol) = @_;
$main::Subs{$symbol->STASH->NAME . '::' . $symbol->NAME}++;
}
my @syms = map { 'Testing::Symtable::'.$_ } qw(This That wibble moo car
BEGIN);
push @syms, "Testing::Symtable::Foo::yarrow";
# Make sure we hit all the expected symbols.
print "not " unless join('', sort @syms) eq join('', sort keys %Subs);
ok;
# Make sure we only hit them each once.
print "not " unless !grep $_ != 1, values %Subs;
ok;
|