This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix bug 36267 - assigning to a tied hash shouldn't change the
[perl5.git] / t / op / do.t
CommitLineData
8d063cd8
LW
1#!./perl
2
8d063cd8
LW
3sub foo1
4{
5d96a5e0 5 ok($_[0]);
8d063cd8
LW
6 'value';
7}
8
9sub foo2
10{
6d4ff0d2 11 shift;
5d96a5e0 12 ok($_[0]);
8d063cd8
LW
13 $x = 'value';
14 $x;
15}
16
5d96a5e0
MS
17my $test = 1;
18sub ok {
19 my($ok, $name) = @_;
20
21 # You have to do it this way or VMS will get confused.
22 printf "%s %d%s\n", $ok ? "ok" : "not ok",
23 $test,
24 defined $name ? " - $name" : '';
25
26 printf "# Failed test at line %d\n", (caller)[2] unless $ok;
27
28 $test++;
29 return $ok;
30}
31
db80722a 32print "1..22\n";
8d063cd8 33
5d96a5e0
MS
34# Test do &sub and proper @_ handling.
35$_[0] = 0;
36$result = do foo1(1);
8d063cd8 37
5d96a5e0
MS
38ok( $result eq 'value', ":$result: eq :value:" );
39ok( $_[0] == 0 );
8d063cd8 40
5d96a5e0
MS
41$_[0] = 0;
42$result = do foo2(0,1,0);
43ok( $result eq 'value', ":$result: eq :value:" );
44ok( $_[0] == 0 );
45
46$result = do{ ok 1; 'value';};
47ok( $result eq 'value', ":$result: eq :value:" );
378cc40b
LW
48
49sub blather {
5d96a5e0 50 ok 1 foreach @_;
378cc40b
LW
51}
52
5d96a5e0
MS
53do blather("ayep","sho nuff");
54@x = ("jeepers", "okydoke");
55@y = ("uhhuh", "yeppers");
56do blather(@x,"noofie",@y);
df739378
JH
57
58unshift @INC, '.';
59
60if (open(DO, ">$$.16")) {
5d96a5e0 61 print DO "ok(1, 'do in scalar context') if defined wantarray && not wantarray\n";
d1e4d418 62 close DO or die "Could not close: $!";
df739378
JH
63}
64
65my $a = do "$$.16";
66
67if (open(DO, ">$$.17")) {
5d96a5e0 68 print DO "ok(1, 'do in list context') if defined wantarray && wantarray\n";
d1e4d418 69 close DO or die "Could not close: $!";
df739378
JH
70}
71
72my @a = do "$$.17";
73
74if (open(DO, ">$$.18")) {
5d96a5e0 75 print DO "ok(1, 'do in void context') if not defined wantarray\n";
d1e4d418 76 close DO or die "Could not close: $!";
df739378
JH
77}
78
79do "$$.18";
80
5d96a5e0
MS
81# bug ID 20010920.007
82eval qq{ do qq(a file that does not exist); };
d1e4d418 83ok( !$@, "do on a non-existing file, first try" );
5d96a5e0
MS
84
85eval qq{ do uc qq(a file that does not exist); };
d1e4d418 86ok( !$@, "do on a non-existing file, second try" );
5d96a5e0 87
d4a8e56c
RGS
88# 6 must be interpreted as a file name here
89ok( (!defined do 6) && $!, "'do 6' : $!" );
90
db80722a
RGS
91# [perl #19545]
92push @t, ($u = (do {} . "This should be pushed."));
93ok( $#t == 0, "empty do result value" );
94
df739378
JH
95END {
96 1 while unlink("$$.16", "$$.17", "$$.18");
97}