Home
last modified time | relevance | path

Searched refs:Errno (Results 1 – 25 of 156) sorted by relevance

1234567

/openbsd/src/gnu/usr.bin/perl/ext/Errno/t/
DErrno.t6 my $has_einval = exists &Errno::EINVAL;
12 BAIL_OUT("No errno's are exported") unless @Errno::EXPORT_OK;
14 my $err = $Errno::EXPORT_OK[0];
26 ok(join(",",sort keys(%!)) eq join(",",sort @Errno::EXPORT_OK),
47 unless grep {$_ eq 'EINVAL'} @Errno::EXPORT_OK;
54 unless grep {$_ eq 'EBADF'} @Errno::EXPORT_OK;
55 is(exists &Errno::EBADF, 1,
/openbsd/src/gnu/usr.bin/perl/dist/IO/lib/IO/
DSocket.pm17 use Errno;
140 $err = $! || (exists &Errno::ETIMEDOUT ? &Errno::ETIMEDOUT : 1);
145 ($! == (($] < 5.019004) ? 10022 : Errno::EINVAL))))
252 $! = (exists &Errno::ETIMEDOUT ? &Errno::ETIMEDOUT : 1);
/openbsd/src/gnu/usr.bin/perl/plan9/
D9front.patch17 diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL
18 --- a/ext/Errno/Errno_pm.PL
19 +++ b/ext/Errno/Errno_pm.PL
/openbsd/src/gnu/usr.bin/perl/dist/PathTools/t/
Dcwd_enoent.t5 use Errno qw();
22 my @acceptable_errnos = (&Errno::ENOENT, (defined &Errno::ESTALE ? &Errno::ESTALE : ()));
/openbsd/src/gnu/usr.bin/perl/ext/Errno/
DChangeLog1 Errno 1.10 -- Wed Dec 27 08:20:29 CST 2006
25 Workaround: use $Config{cppstdin}, like Errno 1.04 did.
36 - Moved dummy Errno.pm file into d/
53 Moved code to generate Errno.pm into errno.pl
/openbsd/src/gnu/usr.bin/perl/cpan/OpenBSD-MkTemp/t/
DOpenBSD-MkTemp.t12 use Errno;
88 cmp_ok($err, '==', Errno::ENOTDIR, "right errno");
97 cmp_ok($err, '==', Errno::EACCES, "right errno");
107 cmp_ok($err, '==', Errno::ENOTDIR, "right errno");
117 cmp_ok($err, '==', Errno::EACCES, "right errno");
/openbsd/src/gnu/usr.bin/perl/t/win32/
Dsymlink.t9 use Errno;
16 if !symlink('', '') && $! == &Errno::ENOSYS;
23 if !$ok && $! == &Errno::EPERM;
Dfs.t24 is(0+$!, &Errno::ENOENT, "check errno is ENOENT");
33 is(0+$!, &Errno::EEXIST, "check for EEXIST");
/openbsd/src/gnu/usr.bin/perl/t/io/
Dread.t31 skip "no EBADF", 1 if (!exists &Errno::EBADF);
36 ok($! == &Errno::EBADF);
Dsay.t35 if (!exists &Errno::EBADF) {
41 print "not " if ($! != &Errno::EBADF);
Dprint.t48 if (!exists &Errno::EBADF) {
54 print "not " if ($! != &Errno::EBADF);
Dbinmode.t34 skip "no EBADF", 1 unless exists &Errno::EBADF;
39 cmp_ok($!, '==', Errno::EBADF());
Dmsg.t25 use Errno qw(EINVAL);
106 is(0+$!, &Errno::EINVAL, "check proper error");
Dsocket.t242 eval { require Errno; defined &Errno::EMFILE }
263 is(0+$!, Errno::EMFILE(), "check correct errno for too many files");
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/
DMore.t15 my $Errno = 42;
17 $! = $Errno;
201 cmp_ok( $!, '==', $Errno, '$! untouched' );
/openbsd/src/gnu/usr.bin/perl/dist/PathTools/
DCwd.pm431 require Errno;
432 $! = Errno::ENOENT();
462 require Errno;
463 $! = Errno::ENOENT();
/openbsd/src/gnu/usr.bin/perl/dist/IO/lib/IO/Socket/
DINET.pm14 use Errno;
19 my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1;
/openbsd/src/gnu/usr.bin/perl/ext/File-Find/t/
Dtaint.t33 use Errno ();
208 ($error == &Errno::ENOSYS || $error == &Errno::EPERM)) {
/openbsd/src/regress/sys/kern/sosplice/error/
Derror.pl20 use Errno;
/openbsd/src/regress/usr.sbin/syslogd/
Dargs-tls-cafile-fake.pl10 use Errno ':POSIX';
Dargs-tls-cafile-default.pl10 use Errno ':POSIX';
Dargs-server-tls-client-fake.pl10 use Errno ':POSIX';
Dargs-sendsyslog-fault.pl11 use Errno ':POSIX';
/openbsd/src/gnu/usr.bin/perl/dist/IO/t/
Dio_sock_errstr.t10 use Errno qw( EINVAL );
/openbsd/src/gnu/usr.bin/perl/cpan/autodie/t/lib/pujHa/ghach/
DDotlh.pm34 use Errno qw(:POSIX);

1234567