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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
#!./perl
BEGIN {
$^W = 1;
$| = 1;
chdir 't' if -d 't';
@INC = '../lib';
$SIG{__WARN__} = sub { die "Dying on warning: ", @_ };
}
sub ok {
my ($n, $result, $info) = @_;
if ($result) {
print "ok $n\n";
}
else {
print "not ok $n\n";
print "# $info\n" if $info;
}
}
$Is_MSWin32 = $^O eq 'MSWin32';
$Is_VMS = $^O eq 'VMS';
$PERL = ($Is_MSWin32 ? '.\perl' : './perl');
print "1..30\n";
eval '$ENV{"foo"} = "hi there";'; # check that ENV is inited inside eval
if ($Is_MSWin32) { ok 1, `cmd /x /c set foo` eq "foo=hi there\n"; }
else { ok 1, `echo \$foo` eq "hi there\n"; }
unlink 'ajslkdfpqjsjfk';
$! = 0;
open(FOO,'ajslkdfpqjsjfk');
ok 2, $!, $!;
close FOO; # just mention it, squelch used-only-once
if ($Is_MSWin32) {
ok 3,1;
ok 4,1;
}
else {
# 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 ($x @_)\n";
}
}
END
}
# can we slice ENV?
@val1 = @ENV{keys(%ENV)};
@val2 = values(%ENV);
ok 5, join(':',@val1) eq join(':',@val2);
ok 6, @val1 > 1;
# regex vars
'foobarbaz' =~ /b(a)r/;
ok 7, $` eq 'foo', $`;
ok 8, $& eq 'bar', $&;
ok 9, $' eq 'baz', $';
ok 10, $+ eq 'a', $+;
# $"
@a = qw(foo bar baz);
ok 11, "@a" eq "foo bar baz", "@a";
{
local $" = ',';
ok 12, "@a" eq "foo,bar,baz", "@a";
}
# $;
%h = ();
$h{'foo', 'bar'} = 1;
ok 13, (keys %h)[0] eq "foo\034bar", (keys %h)[0];
{
local $; = 'x';
%h = ();
$h{'foo', 'bar'} = 1;
ok 14, (keys %h)[0] eq 'fooxbar', (keys %h)[0];
}
# $?, $@, $$
system qq[$PERL -e "exit(0)"];
ok 15, $? == 0, $?;
system qq[$PERL -e "exit(1)"];
ok 16, $? != 0, $?;
eval { die "foo\n" };
ok 17, $@ eq "foo\n", $@;
ok 18, $$ > 0, $$;
# $^X and $0
if ($Is_MSWin32) {
for (19 .. 25) { ok $_, 1 }
}
else {
if ($^O eq 'qnx') {
chomp($wd = `pwd`);
}
else {
$wd = '.';
}
$script = "$wd/show-shebang";
$s1 = $s2 = "\$^X is $wd/perl, \$0 is $script\n";
if ($^O eq 'os2') {
# Started by ksh, which adds suffixes '.exe' and '.' to perl and script
$s2 = "\$^X is $wd/perl.exe, \$0 is $script.\n";
}
ok 19, open(SCRIPT, ">$script"), $!;
ok 20, print(SCRIPT <<EOB . <<'EOF'), $!;
#!$wd/perl
EOB
print "\$^X is $^X, \$0 is $0\n";
EOF
ok 21, close(SCRIPT), $!;
ok 22, chmod(0755, $script), $!;
$_ = `$script`;
s{\bminiperl\b}{perl}; # so that test doesn't fail with miniperl
s{is perl}{is $wd/perl}; # for systems where $^X is only a basename
ok 23, $_ eq $s2, ":$_:!=:$s2:";
$_ = `$wd/perl $script`;
ok 24, $_ eq $s1, ":$_:!=:$s1: after `$wd/perl $script`";
ok 25, unlink($script), $!;
}
# $], $^O, $^T
ok 26, $] >= 5.00319, $];
ok 27, $^O;
ok 28, $^T > 850000000, $^T;
if ($Is_VMS) {
ok 29, 1;
ok 30, 1;
}
else {
$PATH = $ENV{PATH};
$ENV{foo} = "bar";
%ENV = ();
$ENV{PATH} = $PATH;
ok 29, ($Is_MSWin32 ? (`cmd /x /c set foo 2>NUL` eq "")
: (`echo \$foo` eq "\n") );
$ENV{NoNeSuCh} = "foo";
$0 = "bar";
ok 30, ($Is_MSWin32 ? (`cmd /x /c set NoNeSuCh` eq "NoNeSuCh=foo\n")
: (`echo \$NoNeSuCh` eq "foo\n") );
}
|