Test patches for OS/2
[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 $script = './show-shebang';
101 ok 19, open(SCRIPT, ">$script"), $!;
102 ok 20, print(SCRIPT <<'EOF'), $!;
103 #!./perl
104 print "\$^X is $^X, \$0 is $0\n";
105 EOF
106 ok 21, close(SCRIPT), $!;
107 ok 22, chmod(0755, $script), $!;
108 $s = "\$^X is ./perl, \$0 is $script\n";
109 $_ = `$script`;
110 ok 23, $_ eq $s, ":$_:!=:$s:"                                if $^O ne 'os2';
111 # Started by ksh, which sets adds suffixes '.exe' and '.' to perl and script :
112 ok 23, $_ eq "\$^X is ./perl.exe, \$0 is $script.\n", ":$_:" if $^O eq 'os2';
113 $_ = `./perl $script`;
114 ok 24, $_ eq $s, ":$_:!=:$s:";
115 ok 25, unlink($script), $!;
116
117 # $], $^O, $^T
118 ok 26, $] >= 5.00319, $];
119 ok 27, $^O;
120 ok 28, $^T > 850000000, $^T;