Integrate (manually) change #11424 from macperl.
[p5sagit/p5-mst-13.2.git] / ext / POSIX / POSIX.t
CommitLineData
a0d0e21e 1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
20822f61 5 @INC = '../lib';
a0d0e21e 6 require Config; import Config;
fa6b8193 7 if ($^O ne 'VMS' and $Config{'extensions'} !~ /\bPOSIX\b/) {
c764b42b 8 print "1..0\n";
a0d0e21e 9 exit 0;
10 }
11}
c07a80fd 12
212caf55 13use POSIX qw(fcntl_h signal_h limits_h _exit getcwd open read strftime write
14 errno);
a0d0e21e 15use strict subs;
16
c07a80fd 17$| = 1;
212caf55 18print "1..29\n";
a0d0e21e 19
6dead956 20$Is_W32 = $^O eq 'MSWin32';
2986a63f 21$Is_NetWare = $^O eq 'NetWare';
6bbf1b34 22$Is_Dos = $^O eq 'dos';
c9ff6e92 23$Is_MPE = $^O eq 'mpeix';
d536870a 24$Is_MacOS = $^O eq 'MacOS';
6dead956 25
c07a80fd 26$testfd = open("TEST", O_RDONLY, 0) and print "ok 1\n";
a0d0e21e 27read($testfd, $buffer, 9) if $testfd > 2;
c07a80fd 28print $buffer eq "#!./perl\n" ? "ok 2\n" : "not ok 2\n";
29
30write(1,"ok 3\nnot ok 3\n", 5);
a0d0e21e 31
6bbf1b34 32if ($Is_Dos) {
33 for (4..5) {
34 print "ok $_ # skipped, no pipe() support on dos\n";
35 }
36} else {
a0d0e21e 37@fds = POSIX::pipe();
c07a80fd 38print $fds[0] > $testfd ? "ok 4\n" : "not ok 4\n";
39CORE::open($reader = \*READER, "<&=".$fds[0]);
40CORE::open($writer = \*WRITER, ">&=".$fds[1]);
41print $writer "ok 5\n";
a0d0e21e 42close $writer;
43print <$reader>;
44close $reader;
6bbf1b34 45}
a0d0e21e 46
6bbf1b34 47if ($Is_W32 || $Is_Dos) {
6dead956 48 for (6..11) {
6bbf1b34 49 print "ok $_ # skipped, no sigaction support on win32/dos\n";
6dead956 50 }
51}
52else {
a0d0e21e 53$sigset = new POSIX::SigSet 1,3;
54delset $sigset 1;
c07a80fd 55if (!ismember $sigset 1) { print "ok 6\n" }
d536870a 56if ( ismember $sigset 3) { print "ok 7\n" }
a0d0e21e 57
d536870a 58if ($Is_MacOS) {
59 for (8..11) {
60 print "ok $_ # skipped, no kill() support on Mac OS\n";
61 }
a0d0e21e 62}
d536870a 63else {
64 $mask = new POSIX::SigSet &SIGINT;
65 $action = new POSIX::SigAction 'main::SigHUP', $mask, 0;
66 sigaction(&SIGHUP, $action);
67 $SIG{'INT'} = 'SigINT';
68 kill 'HUP', $$;
69 sleep 1;
70 print "ok 11\n";
71
72 sub SigHUP {
73 print "ok 8\n";
74 kill 'INT', $$;
75 sleep 2;
76 print "ok 9\n";
77 }
78
79 sub SigINT {
80 print "ok 10\n";
81 }
6dead956 82}
a0d0e21e 83
c9ff6e92 84if ($Is_MPE) {
85 print "ok 12 # skipped, _POSIX_OPEN_MAX is inaccurate on MPE\n"
86} else {
d536870a 87 if (&_POSIX_OPEN_MAX) {
88 print &_POSIX_OPEN_MAX > $fds[1] ? "ok 12\n" : "not ok 12\n";
89 } else {
90 print "ok 12 # _POSIX_OPEN_MAX undefined ($fds[1])\n";
91 }
c9ff6e92 92}
a0d0e21e 93
d536870a 94my $pat;
95if ($Is_MacOS) {
96 $pat = qr/:t:$/;
97} else {
98 $pat = qr#/t$#;
99}
100print getcwd() =~ $pat ? "ok 13\n" : "not ok 13\n";
a0d0e21e 101
a89d8a78 102# Check string conversion functions.
103
104if ($Config{d_strtod}) {
ff68c719 105 $lc = &POSIX::setlocale(&POSIX::LC_NUMERIC, 'C') if $Config{d_setlocale};
a89d8a78 106 ($n, $x) = &POSIX::strtod('3.14159_OR_SO');
ad9fea34 107# we're just checking that strtod works, not how accurate it is
7f82cce9 108 print ((abs("3.14159" - $n) < 1e-6) && ($x == 6) ?
56dd5b29 109 "ok 14\n" : "not ok 14\n");
ff68c719 110 &POSIX::setlocale(&POSIX::LC_NUMERIC, $lc) if $Config{d_setlocale};
a89d8a78 111} else { print "# strtod not present\n", "ok 14\n"; }
112
113if ($Config{d_strtol}) {
114 ($n, $x) = &POSIX::strtol('21_PENGUINS');
115 print (($n == 21) && ($x == 9) ? "ok 15\n" : "not ok 15\n");
116} else { print "# strtol not present\n", "ok 15\n"; }
117
118if ($Config{d_strtoul}) {
119 ($n, $x) = &POSIX::strtoul('88_TEARS');
120 print (($n == 88) && ($x == 6) ? "ok 16\n" : "not ok 16\n");
121} else { print "# strtoul not present\n", "ok 16\n"; }
122
a0d0e21e 123# Pick up whether we're really able to dynamically load everything.
a89d8a78 124print &POSIX::acos(1.0) == 0.0 ? "ok 17\n" : "not ok 17\n";
a0d0e21e 125
84ef74c4 126# This can coredump if struct tm has a timezone field and we
127# didn't detect it. If this fails, try adding
128# -DSTRUCT_TM_HASZONE to your cflags when compiling ext/POSIX/POSIX.c.
129# See ext/POSIX/hints/sunos_4.pl and ext/POSIX/hints/linux.pl
130print POSIX::strftime("ok 18 # %H:%M, on %D\n", localtime());
131
33c0e3ec 132# If that worked, validate the mini_mktime() routine's normalisation of
133# input fields to strftime().
134sub try_strftime {
135 my $num = shift;
136 my $expect = shift;
137 my $got = POSIX::strftime("%a %b %d %H:%M:%S %Y %j", @_);
138 if ($got eq $expect) {
139 print "ok $num\n";
140 }
141 else {
142 print "# expected: $expect\n# got: $got\nnot ok $num\n";
143 }
144}
145
146$lc = &POSIX::setlocale(&POSIX::LC_TIME, 'C') if $Config{d_setlocale};
147try_strftime(19, "Wed Feb 28 00:00:00 1996 059", 0,0,0, 28,1,96);
148try_strftime(20, "Thu Feb 29 00:00:60 1996 060", 60,0,-24, 30,1,96);
149try_strftime(21, "Fri Mar 01 00:00:00 1996 061", 0,0,-24, 31,1,96);
150try_strftime(22, "Sun Feb 28 00:00:00 1999 059", 0,0,0, 28,1,99);
151try_strftime(23, "Mon Mar 01 00:00:00 1999 060", 0,0,24, 28,1,99);
152try_strftime(24, "Mon Feb 28 00:00:00 2000 059", 0,0,0, 28,1,100);
153try_strftime(25, "Tue Feb 29 00:00:00 2000 060", 0,0,0, 0,2,100);
154try_strftime(26, "Wed Mar 01 00:00:00 2000 061", 0,0,0, 1,2,100);
d0e85dce 155try_strftime(27, "Fri Mar 31 00:00:00 2000 091", 0,0,0, 31,2,100);
33c0e3ec 156&POSIX::setlocale(&POSIX::LC_TIME, $lc) if $Config{d_setlocale};
157
212caf55 158{
159 for my $test (0, 1) {
160 $! = 0;
161 # POSIX::errno is autoloaded.
162 # Autoloading requires many system calls.
163 # errno() looks at $! to generate its result.
164 # Autoloading should not munge the value.
165 my $foo = $!;
166 my $errno = POSIX::errno();
167 print "not " unless $errno == $foo;
168 print "ok ", 28 + $test, "\n";
169 }
170}
171
c07a80fd 172$| = 0;
ec40c0cd 173# The following line assumes buffered output, which may be not true with EMX:
d536870a 174print '@#!*$@(!@#$' unless ($Is_MacOS || $^O eq 'os2' || $^O eq 'uwin' || $^O eq 'os390');
601f2d16 175 (defined $ENV{PERLIO} &&
176 $ENV{PERLIO} eq 'unix' &&
177 $Config::Config{useperlio}));
a0d0e21e 178_exit(0);