[inseparable changes from match from perl-5.003_93 to perl-5.003_94]
[p5sagit/p5-mst-13.2.git] / t / pragma / subs.t
CommitLineData
8ebc5c01 1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
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 ?
49 `MCR $^X $switch $tmpfile` :
68dc0745 50 $Is_MSWin32 ?
51 `.\\perl -I../lib $switch $tmpfile 2>&1` :
44a8e56a 52 `sh -c './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
8ebc5c01 58 $expected =~ s/\n+$//;
59 my $prefix = ($results =~ s/^PREFIX\n//) ;
60 if ( $results =~ s/^SKIPPED\n//) {
61 print "$results\n" ;
62 }
63 elsif (($prefix and $results !~ /^\Q$expected/) or
64 (!$prefix and $results ne $expected)){
65 print STDERR "PROG: $switch\n$prog\n";
66 print STDERR "EXPECTED:\n$expected\n";
67 print STDERR "GOT:\n$results\n";
68 print "not ";
69 }
70 print "ok ", ++$i, "\n";
71 foreach (@temps)
72 { unlink $_ if $_ }
73}
74
75__END__
76
77# Error - not predeclaring a sub
78Fred 1,2 ;
79sub Fred {}
80EXPECT
81Number found where operator expected at - line 3, near "Fred 1"
82 (Do you need to predeclare Fred?)
83syntax error at - line 3, near "Fred 1"
84Execution of - aborted due to compilation errors.
85########
86
87# Error - not predeclaring a sub in time
88Fred 1,2 ;
89use subs qw( Fred ) ;
90sub Fred {}
91EXPECT
92Number found where operator expected at - line 3, near "Fred 1"
93 (Do you need to predeclare Fred?)
94syntax error at - line 3, near "Fred 1"
68dc0745 95BEGIN not safe after errors--compilation aborted at - line 4.
8ebc5c01 96########
97
98# AOK
99use subs qw( Fred) ;
100Fred 1,2 ;
101sub Fred { print $_[0] + $_[1], "\n" }
102EXPECT
1033
104########
105
106# override a built-in function
107use subs qw( open ) ;
108open 1,2 ;
109sub open { print $_[0] + $_[1], "\n" }
110EXPECT
1113
112########
113
114--FILE-- abc
115Fred 1,2 ;
1161;
117--FILE--
118use subs qw( Fred ) ;
119require "./abc" ;
120sub Fred { print $_[0] + $_[1], "\n" }
121EXPECT
1223
123########
124
125# check that it isn't affected by block scope
126{
127 use subs qw( Fred ) ;
128}
129Fred 1, 2;
130sub Fred { print $_[0] + $_[1], "\n" }
131EXPECT
1323