This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[win32] Integrate mainline
[perl5.git] / t / lib / posix.t
CommitLineData
a0d0e21e
LW
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require Config; import Config;
fa6b8193 7 if ($^O ne 'VMS' and $Config{'extensions'} !~ /\bPOSIX\b/) {
c764b42b 8 print "1..0\n";
a0d0e21e
LW
9 exit 0;
10 }
11}
c07a80fd 12
a0d0e21e
LW
13use POSIX qw(fcntl_h signal_h limits_h _exit getcwd open read write);
14use strict subs;
15
c07a80fd 16$| = 1;
a89d8a78 17print "1..17\n";
a0d0e21e 18
c07a80fd 19$testfd = open("TEST", O_RDONLY, 0) and print "ok 1\n";
a0d0e21e 20read($testfd, $buffer, 9) if $testfd > 2;
c07a80fd 21print $buffer eq "#!./perl\n" ? "ok 2\n" : "not ok 2\n";
22
23write(1,"ok 3\nnot ok 3\n", 5);
a0d0e21e
LW
24
25@fds = POSIX::pipe();
c07a80fd 26print $fds[0] > $testfd ? "ok 4\n" : "not ok 4\n";
27CORE::open($reader = \*READER, "<&=".$fds[0]);
28CORE::open($writer = \*WRITER, ">&=".$fds[1]);
29print $writer "ok 5\n";
a0d0e21e
LW
30close $writer;
31print <$reader>;
32close $reader;
33
34$sigset = new POSIX::SigSet 1,3;
35delset $sigset 1;
c07a80fd 36if (!ismember $sigset 1) { print "ok 6\n" }
37if (ismember $sigset 3) { print "ok 7\n" }
a0d0e21e
LW
38$mask = new POSIX::SigSet &SIGINT;
39$action = new POSIX::SigAction 'main::SigHUP', $mask, 0;
40sigaction(&SIGHUP, $action);
41$SIG{'INT'} = 'SigINT';
42kill 'HUP', $$;
43sleep 1;
c07a80fd 44print "ok 11\n";
a0d0e21e
LW
45
46sub SigHUP {
c07a80fd 47 print "ok 8\n";
a0d0e21e
LW
48 kill 'INT', $$;
49 sleep 2;
c07a80fd 50 print "ok 9\n";
a0d0e21e
LW
51}
52
53sub SigINT {
c07a80fd 54 print "ok 10\n";
a0d0e21e
LW
55}
56
c07a80fd 57print &_POSIX_OPEN_MAX > $fds[1] ? "ok 12\n" : "not ok 12\n";
a0d0e21e 58
c07a80fd 59print getcwd() =~ m#/t$# ? "ok 13\n" : "not ok 13\n";
a0d0e21e 60
a89d8a78
DH
61# Check string conversion functions.
62
63if ($Config{d_strtod}) {
ff68c719 64 $lc = &POSIX::setlocale(&POSIX::LC_NUMERIC, 'C') if $Config{d_setlocale};
a89d8a78
DH
65 ($n, $x) = &POSIX::strtod('3.14159_OR_SO');
66 print (($n == 3.14159) && ($x == 6) ? "ok 14\n" : "not ok 14\n");
ff68c719 67 &POSIX::setlocale(&POSIX::LC_NUMERIC, $lc) if $Config{d_setlocale};
a89d8a78
DH
68} else { print "# strtod not present\n", "ok 14\n"; }
69
70if ($Config{d_strtol}) {
71 ($n, $x) = &POSIX::strtol('21_PENGUINS');
72 print (($n == 21) && ($x == 9) ? "ok 15\n" : "not ok 15\n");
73} else { print "# strtol not present\n", "ok 15\n"; }
74
75if ($Config{d_strtoul}) {
76 ($n, $x) = &POSIX::strtoul('88_TEARS');
77 print (($n == 88) && ($x == 6) ? "ok 16\n" : "not ok 16\n");
78} else { print "# strtoul not present\n", "ok 16\n"; }
79
a0d0e21e 80# Pick up whether we're really able to dynamically load everything.
a89d8a78 81print &POSIX::acos(1.0) == 0.0 ? "ok 17\n" : "not ok 17\n";
a0d0e21e 82
c07a80fd 83$| = 0;
a0d0e21e
LW
84print '@#!*$@(!@#$';
85_exit(0);