perl 2.0 (no announcement message available)
[p5sagit/p5-mst-13.2.git] / t / op.magic
CommitLineData
8d063cd8 1#!./perl
2
378cc40b 3# $Header: op.magic,v 2.0 88/06/05 00:14:11 root Exp $
8d063cd8 4
5$| = 1; # command buffering
6
378cc40b 7print "1..4\n";
8
9eval '$ENV{"foo"} = "hi there";'; # check that ENV is inited inside eval
8d063cd8 10if (`echo \$foo` eq "hi there\n") {print "ok 1\n";} else {print "not ok 1\n";}
11
12$! = 0;
13open(foo,'ajslkdfpqjsjfkslkjdflksd');
14if ($! == 2) {print "ok 2\n";} else {print "not ok 2\n";}
15
378cc40b 16# the next tests are embedded inside system simply because sh spits out
17# a newline onto stderr when a child process kills itself with SIGINT.
18
19system './perl',
20'-e', '$| = 1; # command buffering',
21
22'-e', '$SIG{"INT"} = "ok3"; kill 2,$$;',
23'-e', '$SIG{"INT"} = "IGNORE"; kill 2,$$; print "ok 4\n";',
24'-e', '$SIG{"INT"} = "DEFAULT"; kill 2,$$; print "not ok\n";',
25
26'-e', 'sub ok3 { print "ok 3\n" if pop(@_) eq "INT"; }';