blob: 83420d2aab282fed1cf86e27be73519aed8e8e63 (
plain)
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
|
#!./perl
# $RCSfile: magic.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:05 $
$| = 1; # command buffering
print "1..5\n";
eval '$ENV{"foo"} = "hi there";'; # check that ENV is inited inside eval
if (`echo \$foo` eq "hi there\n") {print "ok 1\n";} else {print "not ok 1\n";}
unlink 'ajslkdfpqjsjfk';
$! = 0;
open(foo,'ajslkdfpqjsjfk');
if ($! == 2) {print "ok 2\n";} else {print "not ok 2\n";}
# the next tests are embedded inside system simply because sh spits out
# a newline onto stderr when a child process kills itself with SIGINT.
system './perl', '-e', <<'END';
$| = 1; # command buffering
$SIG{"INT"} = "ok3"; kill "INT",$$;
$SIG{"INT"} = "IGNORE"; kill 2,$$; print "ok 4\n";
$SIG{"INT"} = "DEFAULT"; kill 2,$$; print "not ok\n";
sub ok3 {
if (($x = pop(@_)) eq "INT") {
print "ok 3\n";
}
else {
print "not ok 3 $a\n";
}
}
END
@val1 = @ENV{keys(%ENV)}; # can we slice ENV?
@val2 = values(%ENV);
print join(':',@val1) eq join(':',@val2) ? "ok 5\n" : "not ok 5\n";
|