102 lines
2.8 KiB
Perl
Executable File
102 lines
2.8 KiB
Perl
Executable File
#!./perl
|
|
|
|
BEGIN {
|
|
chdir 't' if -d 't';
|
|
@INC = '../lib';
|
|
require Config; import Config;
|
|
if ($^O ne 'VMS' and $Config{'extensions'} !~ /\bPOSIX\b/) {
|
|
print "1..0\n";
|
|
exit 0;
|
|
}
|
|
}
|
|
|
|
use POSIX qw(fcntl_h signal_h limits_h _exit getcwd open read strftime write);
|
|
use strict subs;
|
|
|
|
$| = 1;
|
|
print "1..18\n";
|
|
|
|
$Is_W32 = $^O eq 'MSWin32';
|
|
|
|
$testfd = open("TEST", O_RDONLY, 0) and print "ok 1\n";
|
|
read($testfd, $buffer, 9) if $testfd > 2;
|
|
print $buffer eq "#!./perl\n" ? "ok 2\n" : "not ok 2\n";
|
|
|
|
write(1,"ok 3\nnot ok 3\n", 5);
|
|
|
|
@fds = POSIX::pipe();
|
|
print $fds[0] > $testfd ? "ok 4\n" : "not ok 4\n";
|
|
CORE::open($reader = \*READER, "<&=".$fds[0]);
|
|
CORE::open($writer = \*WRITER, ">&=".$fds[1]);
|
|
print $writer "ok 5\n";
|
|
close $writer;
|
|
print <$reader>;
|
|
close $reader;
|
|
|
|
if ($Is_W32) {
|
|
for (6..11) {
|
|
print "ok $_ # skipped, no sigaction support on win32\n";
|
|
}
|
|
}
|
|
else {
|
|
$sigset = new POSIX::SigSet 1,3;
|
|
delset $sigset 1;
|
|
if (!ismember $sigset 1) { print "ok 6\n" }
|
|
if (ismember $sigset 3) { print "ok 7\n" }
|
|
$mask = new POSIX::SigSet &SIGINT;
|
|
$action = new POSIX::SigAction 'main::SigHUP', $mask, 0;
|
|
sigaction(&SIGHUP, $action);
|
|
$SIG{'INT'} = 'SigINT';
|
|
kill 'HUP', $$;
|
|
sleep 1;
|
|
print "ok 11\n";
|
|
|
|
sub SigHUP {
|
|
print "ok 8\n";
|
|
kill 'INT', $$;
|
|
sleep 2;
|
|
print "ok 9\n";
|
|
}
|
|
|
|
sub SigINT {
|
|
print "ok 10\n";
|
|
}
|
|
}
|
|
|
|
print &_POSIX_OPEN_MAX > $fds[1] ? "ok 12\n" : "not ok 12\n";
|
|
|
|
print getcwd() =~ m#/t$# ? "ok 13\n" : "not ok 13\n";
|
|
|
|
# Check string conversion functions.
|
|
|
|
if ($Config{d_strtod}) {
|
|
$lc = &POSIX::setlocale(&POSIX::LC_NUMERIC, 'C') if $Config{d_setlocale};
|
|
($n, $x) = &POSIX::strtod('3.14159_OR_SO');
|
|
print (($n == 3.14159) && ($x == 6) ? "ok 14\n" : "not ok 14\n");
|
|
&POSIX::setlocale(&POSIX::LC_NUMERIC, $lc) if $Config{d_setlocale};
|
|
} else { print "# strtod not present\n", "ok 14\n"; }
|
|
|
|
if ($Config{d_strtol}) {
|
|
($n, $x) = &POSIX::strtol('21_PENGUINS');
|
|
print (($n == 21) && ($x == 9) ? "ok 15\n" : "not ok 15\n");
|
|
} else { print "# strtol not present\n", "ok 15\n"; }
|
|
|
|
if ($Config{d_strtoul}) {
|
|
($n, $x) = &POSIX::strtoul('88_TEARS');
|
|
print (($n == 88) && ($x == 6) ? "ok 16\n" : "not ok 16\n");
|
|
} else { print "# strtoul not present\n", "ok 16\n"; }
|
|
|
|
# Pick up whether we're really able to dynamically load everything.
|
|
print &POSIX::acos(1.0) == 0.0 ? "ok 17\n" : "not ok 17\n";
|
|
|
|
# This can coredump if struct tm has a timezone field and we
|
|
# didn't detect it. If this fails, try adding
|
|
# -DSTRUCT_TM_HASZONE to your cflags when compiling ext/POSIX/POSIX.c.
|
|
# See ext/POSIX/hints/sunos_4.pl and ext/POSIX/hints/linux.pl
|
|
print POSIX::strftime("ok 18 # %H:%M, on %D\n", localtime());
|
|
|
|
$| = 0;
|
|
# The following line assumes buffered output, which may be not true with EMX:
|
|
print '@#!*$@(!@#$' unless ($^O eq 'os2' || $^O eq 'uwin' || $^O eq 'os390');
|
|
_exit(0);
|