Re: OS/2 patch for _27
[p5sagit/p5-mst-13.2.git] / t / op / magic.t
1 #!./perl
2
3 # $RCSfile: magic.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:05 $
4
5 BEGIN {
6     $^W = 1;
7     $| = 1;
8     chdir 't' if -d 't';
9     @INC = '../lib';
10     $SIG{__WARN__} = sub { die "Dying on warning: ", @_ };
11 }
12
13 sub 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
24 print "1..28\n";
25
26 eval '$ENV{"foo"} = "hi there";';       # check that ENV is inited inside eval
27 ok 1, `echo \$foo` eq "hi there\n";
28
29 unlink 'ajslkdfpqjsjfk';
30 $! = 0;
31 open(FOO,'ajslkdfpqjsjfk');
32 ok 2, $!, $!;
33 close FOO; # just mention it, squelch used-only-once
34
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
38 system './perl', '-e', <<'END';
39
40     $| = 1;             # command buffering
41
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 {
51             print "not ok 3 ($x @_)\n";
52         }
53     }
54
55 END
56
57 @val1 = @ENV{keys(%ENV)};       # can we slice ENV?
58 @val2 = values(%ENV);
59 ok 5, join(':',@val1) eq join(':',@val2);
60 ok 6, @val1 > 1;
61
62 # regex vars
63 'foobarbaz' =~ /b(a)r/;
64 ok 7, $` eq 'foo', $`;
65 ok 8, $& eq 'bar', $&;
66 ok 9, $' eq 'baz', $';
67 ok 10, $+ eq 'a', $+;
68
69 # $"
70 @a = qw(foo bar baz);
71 ok 11, "@a" eq "foo bar baz", "@a";
72 {
73     local $" = ',';
74     ok 12, "@a" eq "foo,bar,baz", "@a";
75 }
76
77 # $;
78 %h = ();
79 $h{'foo', 'bar'} = 1;
80 ok 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 }
87
88 # $?, $@, $$
89 system 'true';
90 ok 15, $? == 0, $?;
91 system 'false';
92 ok 16, $? != 0, $?;
93
94 eval { die "foo\n" };
95 ok 17, $@ eq "foo\n", $@;
96
97 ok 18, $$ > 0, $$;
98
99 # $^X and $0
100 if ($^O eq 'qnx') {
101     chomp($wd = `pwd`);
102 }
103 else {
104     $wd = '.';
105 }
106 $script = "$wd/show-shebang";
107 $s = "\$^X is $wd/perl, \$0 is $script\n";
108 if ($^O eq 'os2') {
109     # Started by ksh, which adds suffixes '.exe' and '.' to perl and script
110     $s1 = "\$^X is $wd/perl.exe, \$0 is $script.\n";
111 }
112 else {
113     $s1 = $s;
114 }
115 ok 19, open(SCRIPT, ">$script"), $!;
116 ok 20, print(SCRIPT <<EOB . <<'EOF'), $!;
117 #!$wd/perl
118 EOB
119 print "\$^X is $^X, \$0 is $0\n";
120 EOF
121 ok 21, close(SCRIPT), $!;
122 ok 22, chmod(0755, $script), $!;
123 $_ = `$script`;
124 s{is perl}{is $wd/perl}; # for systems where $^X is only a basename
125 ok 23, $_ eq $s1, ":$_:!=:$s1:";
126 $_ = `$wd/perl $script`;
127 ok 24, $_ eq $s, ":$_:!=:$s: after `$wd/perl $script`";
128 ok 25, unlink($script), $!;
129
130 # $], $^O, $^T
131 ok 26, $] >= 5.00319, $];
132 ok 27, $^O;
133 ok 28, $^T > 850000000, $^T;