Re: Inline PI function
[p5sagit/p5-mst-13.2.git] / t / op / goto.t
CommitLineData
8d063cd8 1#!./perl
2
79072805 3# $RCSfile: goto.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:56 $
8d063cd8 4
8990e307 5# "This IS structured code. It's just randomly structured."
6
7print "1..9\n";
8d063cd8 8
79072805 9while ($?) {
8d063cd8 10 $foo = 1;
11 label1:
12 $foo = 2;
13 goto label2;
14} continue {
15 $foo = 0;
16 goto label4;
17 label3:
18 $foo = 4;
19 goto label4;
20}
21goto label1;
22
23$foo = 3;
24
25label2:
26print "#1\t:$foo: == 2\n";
27if ($foo == 2) {print "ok 1\n";} else {print "not ok 1\n";}
28goto label3;
29
30label4:
31print "#2\t:$foo: == 4\n";
32if ($foo == 4) {print "ok 2\n";} else {print "not ok 2\n";}
33
34$x = `./perl -e 'goto foo;' 2>&1`;
a0d0e21e 35if ($x =~ /DCL-W-NOCOMD/) { $x = `\$ mcr sys\$disk:[]perl. -e "goto foo;"`; }
36
8d063cd8 37if ($x =~ /label/) {print "ok 3\n";} else {print "not ok 3\n";}
79072805 38
39sub foo {
40 goto bar;
41 print "not ok 4\n";
42 return;
43bar:
44 print "ok 4\n";
45}
46
47&foo;
48
49sub bar {
8990e307 50 $x = 'bypass';
51 eval "goto $x";
79072805 52}
53
54&bar;
55exit;
8990e307 56
57FINALE:
58print "ok 9\n";
59exit;
60
61bypass:
79072805 62print "ok 5\n";
8990e307 63
64# Test autoloading mechanism.
65
66sub two {
67 ($pack, $file, $line) = caller; # Should indicate original call stats.
68 print "@_ $pack $file $line" eq "1 2 3 main $FILE $LINE"
69 ? "ok 7\n"
70 : "not ok 7\n";
71}
72
73sub one {
74 eval <<'END';
75 sub one { print "ok 6\n"; goto &two; print "not ok 6\n"; }
76END
77 goto &one;
78}
79
80$FILE = __FILE__;
81$LINE = __LINE__ + 1;
82&one(1,2,3);
83
84$wherever = NOWHERE;
85eval { goto $wherever };
86print $@ =~ /Can't find label NOWHERE/ ? "ok 8\n" : "not ok 8\n";
87
88$wherever = FINALE;
89goto $wherever;