Subject: | fixes to t/Port_Configuration.t |
"make test" fails for Net-Server-2.003 if Socket6 libraries are not
available - in the SKIP statement of t/Port_Configuration.t, the number
of tests to skip is incorrect
trivial patch, also for the SKIP statement for IO::Socket::UNIX, is
attached :-)
Subject: | p.txt |
diff -ur Net-Server-2.003__dist/t/Port_Configuration.t Net-Sever-2.003/t/Port_Configuration.t
--- Net-Server-2.003__dist/t/Port_Configuration.t 2012-06-06 15:58:37.000000000 +0200
+++ Net-Sever-2.003/t/Port_Configuration.t 2012-06-07 08:53:17.545593482 +0200
@@ -240,7 +240,7 @@
if (!eval { require IO::Socket::UNIX }) {
my $err = $@;
SKIP: {
- skip "Cannot load IO::Socket::UNIX - skipping UNIX proto tests", 7;
+ skip "Cannot load IO::Socket::UNIX - skipping UNIX proto tests", 8;
};
} else {
p_c([port => 'foo/bar/unix'], {
@@ -333,7 +333,7 @@
}) {
chomp(my $err = $@);
SKIP: {
- skip "Cannot load Socket6 libraries - skipping IPv6 proto tests ($err)", 11;
+ skip "Cannot load Socket6 libraries - skipping IPv6 proto tests ($err)", 13;
};
} else {