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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
#!./perl
sub foo1
{
ok($_[0]);
'value';
}
sub foo2
{
shift;
ok($_[0]);
$x = 'value';
$x;
}
my $test = 1;
sub ok {
my($ok, $name) = @_;
# You have to do it this way or VMS will get confused.
printf "%s %d%s\n", $ok ? "ok" : "not ok",
$test,
defined $name ? " - $name" : '';
printf "# Failed test at line %d\n", (caller)[2] unless $ok;
$test++;
return $ok;
}
print "1..22\n";
# Test do &sub and proper @_ handling.
$_[0] = 0;
$result = do foo1(1);
ok( $result eq 'value', ":$result: eq :value:" );
ok( $_[0] == 0 );
$_[0] = 0;
$result = do foo2(0,1,0);
ok( $result eq 'value', ":$result: eq :value:" );
ok( $_[0] == 0 );
$result = do{ ok 1; 'value';};
ok( $result eq 'value', ":$result: eq :value:" );
sub blather {
ok 1 foreach @_;
}
do blather("ayep","sho nuff");
@x = ("jeepers", "okydoke");
@y = ("uhhuh", "yeppers");
do blather(@x,"noofie",@y);
unshift @INC, '.';
if (open(DO, ">$$.16")) {
print DO "ok(1, 'do in scalar context') if defined wantarray && not wantarray\n";
close DO or die "Could not close: $!";
}
my $a = do "$$.16"; die $@ if $@;
if (open(DO, ">$$.17")) {
print DO "ok(1, 'do in list context') if defined wantarray && wantarray\n";
close DO or die "Could not close: $!";
}
my @a = do "$$.17"; die $@ if $@;
if (open(DO, ">$$.18")) {
print DO "ok(1, 'do in void context') if not defined wantarray\n";
close DO or die "Could not close: $!";
}
do "$$.18"; die $@ if $@;
# bug ID 20010920.007
eval qq{ do qq(a file that does not exist); };
ok( !$@, "do on a non-existing file, first try" );
eval qq{ do uc qq(a file that does not exist); };
ok( !$@, "do on a non-existing file, second try" );
# 6 must be interpreted as a file name here
ok( (!defined do 6) && $!, "'do 6' : $!" );
# [perl #19545]
push @t, ($u = (do {} . "This should be pushed."));
ok( $#t == 0, "empty do result value" );
END {
1 while unlink("$$.16", "$$.17", "$$.18");
}
|