This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
This needs POSIX, so skip if no POSIX
[perl5.git]
/
lib
/
Pod
/
t
/
basic.t
diff --git
a/lib/Pod/t/basic.t
b/lib/Pod/t/basic.t
index
a61b4bf
..
984e720
100644
(file)
--- a/
lib/Pod/t/basic.t
+++ b/
lib/Pod/t/basic.t
@@
-16,6
+16,11
@@
BEGIN {
unshift (@INC, '../blib/lib');
}
unshift (@INC, '../blib/lib');
+ require Config;
+ if (($Config::Config{'extensions'} !~ /\bPOSIX\b/) ){
+ print "1..0 # Skip -- Perl configured without POSIX module\n";
+ exit 0;
+ }
$| = 1;
print "1..11\n";
}