Remove bad advice from perllocale.pod
[p5sagit/p5-mst-13.2.git] / t / op / magic.t
CommitLineData
8d063cd8 1#!./perl
2
79072805 3# $RCSfile: magic.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:05 $
8d063cd8 4
90ce63d5 5BEGIN {
6 $^W = 1;
7 $| = 1;
8 chdir 't' if -d 't';
9 @INC = '../lib';
10 $SIG{__WARN__} = sub { die @_ };
11}
8d063cd8 12
90ce63d5 13sub ok {
14 my ($n, $result, $info) = @_;
15 if ($result) {
16 print "ok $n\n";
17 }
18 else {
19 print "not ok $n\n";
20 print "# $info\n" if $info;
21 }
22}
23
24print "1..28\n";
378cc40b 25
26eval '$ENV{"foo"} = "hi there";'; # check that ENV is inited inside eval
90ce63d5 27ok 1, `echo \$foo` eq "hi there\n";
8d063cd8 28
bf38876a 29unlink 'ajslkdfpqjsjfk';
8d063cd8 30$! = 0;
90ce63d5 31open(FOO,'ajslkdfpqjsjfk');
32ok 2, $!, $!;
33close FOO; # just mention it, squelch used-only-once
8d063cd8 34
378cc40b 35# the next tests are embedded inside system simply because sh spits out
36# a newline onto stderr when a child process kills itself with SIGINT.
37
79072805 38system './perl', '-e', <<'END';
378cc40b 39
79072805 40 $| = 1; # command buffering
378cc40b 41
79072805 42 $SIG{"INT"} = "ok3"; kill "INT",$$;
43 $SIG{"INT"} = "IGNORE"; kill 2,$$; print "ok 4\n";
44 $SIG{"INT"} = "DEFAULT"; kill 2,$$; print "not ok\n";
45
46 sub ok3 {
47 if (($x = pop(@_)) eq "INT") {
48 print "ok 3\n";
49 }
50 else {
652ed9f8 51 print "not ok 3 ($x @_)\n";
79072805 52 }
53 }
54
55END
a687059c 56
57@val1 = @ENV{keys(%ENV)}; # can we slice ENV?
58@val2 = values(%ENV);
90ce63d5 59ok 5, join(':',@val1) eq join(':',@val2);
60ok 6, @val1 > 1;
61
62# regex vars
63'foobarbaz' =~ /b(a)r/;
64ok 7, $` eq 'foo', $`;
65ok 8, $& eq 'bar', $&;
66ok 9, $' eq 'baz', $';
67ok 10, $+ eq 'a', $+;
68
69# $"
70@a = qw(foo bar baz);
71ok 11, "@a" eq "foo bar baz", "@a";
72{
73 local $" = ',';
74 ok 12, "@a" eq "foo,bar,baz", "@a";
75}
a687059c 76
90ce63d5 77# $;
78%h = ();
79$h{'foo', 'bar'} = 1;
80ok 13, (keys %h)[0] eq "foo\034bar", (keys %h)[0];
81{
82 local $; = 'x';
83 %h = ();
84 $h{'foo', 'bar'} = 1;
85 ok 14, (keys %h)[0] eq 'fooxbar', (keys %h)[0];
86}
ed6116ce 87
90ce63d5 88# $?, $@, $$
89system 'true';
90ok 15, $? == 0, $?;
91system 'false';
92ok 16, $? != 0, $?;
93
94eval { die "foo\n" };
95ok 17, $@ eq "foo\n", $@;
96
97ok 18, $$ > 0, $$;
98
99# $^X and $0
100$script = './show-shebang';
101ok 19, open(SCRIPT, ">$script"), $!;
102ok 20, print(SCRIPT <<'EOF'), $!;
103#!./perl
104print "\$^X is $^X, \$0 is $0\n";
105EOF
106ok 21, close(SCRIPT), $!;
107ok 22, chmod(0755, $script), $!;
108$s = "\$^X is ./perl, \$0 is $script\n";
109$_ = `$script`;
110ok 23, $_ eq $s, ":$_:";
111$_ = `./perl $script`;
112ok 24, $_ eq $s, ":$_:";
113ok 25, unlink($script), $!;
ed6116ce 114
90ce63d5 115# $], $^O, $^T
116ok 26, $] >= 5.00319, $];
117ok 27, $^O;
118ok 28, $^T > 850000000, $^T;