Use minimal @INC in tests, most of the time just '../lib',
[p5sagit/p5-mst-13.2.git] / t / pragma / subs.t
CommitLineData
8ebc5c01 1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
20822f61 5 @INC = '../lib';
8ebc5c01 6 $ENV{PERL5LIB} = '../lib';
7}
8
9$| = 1;
10undef $/;
11my @prgs = split "\n########\n", <DATA>;
12print "1..", scalar @prgs, "\n";
13
44a8e56a 14my $Is_VMS = $^O eq 'VMS';
68dc0745 15my $Is_MSWin32 = $^O eq 'MSWin32';
8ebc5c01 16my $tmpfile = "tmp0000";
17my $i = 0 ;
181 while -f ++$tmpfile;
44a8e56a 19END { if ($tmpfile) { 1 while unlink $tmpfile} }
8ebc5c01 20
21for (@prgs){
22 my $switch = "";
23 my @temps = () ;
24 if (s/^\s*-\w+//){
25 $switch = $&;
26 }
27 my($prog,$expected) = split(/\nEXPECT\n/, $_);
28 if ( $prog =~ /--FILE--/) {
29 my(@files) = split(/\n--FILE--\s*([^\s\n]*)\s*\n/, $prog) ;
30 shift @files ;
31 die "Internal error test $i didn't split into pairs, got " .
32 scalar(@files) . "[" . join("%%%%", @files) ."]\n"
33 if @files % 2 ;
34 while (@files > 2) {
35 my $filename = shift @files ;
36 my $code = shift @files ;
37 push @temps, $filename ;
38 open F, ">$filename" or die "Cannot open $filename: $!\n" ;
39 print F $code ;
40 close F ;
41 }
42 shift @files ;
43 $prog = shift @files ;
44 }
44a8e56a 45 open TEST, ">$tmpfile";
46 print TEST $prog,"\n";
8ebc5c01 47 close TEST;
44a8e56a 48 my $results = $Is_VMS ?
f0963acb 49 `./perl $switch $tmpfile 2>&1` :
68dc0745 50 $Is_MSWin32 ?
51 `.\\perl -I../lib $switch $tmpfile 2>&1` :
648cac19 52 `./perl $switch $tmpfile 2>&1`;
8ebc5c01 53 my $status = $?;
8ebc5c01 54 $results =~ s/\n+$//;
44a8e56a 55 # allow expected output to be written as if $prog is on STDIN
56 $results =~ s/tmp\d+/-/g;
57 $results =~ s/\n%[A-Z]+-[SIWEF]-.*$// if $Is_VMS; # clip off DCL status msg
f0ec1f9a 58# bison says 'parse error' instead of 'syntax error',
d91e2bdb 59# various yaccs may or may not capitalize 'syntax'.
2a8ee232 60 $results =~ s/^(syntax|parse) error/syntax error/mig;
8ebc5c01 61 $expected =~ s/\n+$//;
62 my $prefix = ($results =~ s/^PREFIX\n//) ;
63 if ( $results =~ s/^SKIPPED\n//) {
64 print "$results\n" ;
65 }
66 elsif (($prefix and $results !~ /^\Q$expected/) or
67 (!$prefix and $results ne $expected)){
68 print STDERR "PROG: $switch\n$prog\n";
69 print STDERR "EXPECTED:\n$expected\n";
70 print STDERR "GOT:\n$results\n";
71 print "not ";
72 }
73 print "ok ", ++$i, "\n";
74 foreach (@temps)
75 { unlink $_ if $_ }
76}
77
78__END__
79
80# Error - not predeclaring a sub
81Fred 1,2 ;
82sub Fred {}
83EXPECT
84Number found where operator expected at - line 3, near "Fred 1"
85 (Do you need to predeclare Fred?)
86syntax error at - line 3, near "Fred 1"
87Execution of - aborted due to compilation errors.
88########
89
90# Error - not predeclaring a sub in time
91Fred 1,2 ;
92use subs qw( Fred ) ;
93sub Fred {}
94EXPECT
95Number found where operator expected at - line 3, near "Fred 1"
96 (Do you need to predeclare Fred?)
97syntax error at - line 3, near "Fred 1"
68dc0745 98BEGIN not safe after errors--compilation aborted at - line 4.
8ebc5c01 99########
100
101# AOK
102use subs qw( Fred) ;
103Fred 1,2 ;
104sub Fred { print $_[0] + $_[1], "\n" }
105EXPECT
1063
107########
108
109# override a built-in function
110use subs qw( open ) ;
111open 1,2 ;
112sub open { print $_[0] + $_[1], "\n" }
113EXPECT
1143
115########
116
117--FILE-- abc
118Fred 1,2 ;
1191;
120--FILE--
121use subs qw( Fred ) ;
122require "./abc" ;
123sub Fred { print $_[0] + $_[1], "\n" }
124EXPECT
1253
126########
127
128# check that it isn't affected by block scope
129{
130 use subs qw( Fred ) ;
131}
132Fred 1, 2;
133sub Fred { print $_[0] + $_[1], "\n" }
134EXPECT
1353