Subject: | tests fail due to incorrect test skip counts |
$ perl Makefile.PL
...
$ make
...
$ make TEST_VERBOSE=1 test
...
# number of tests ran 49 did not match number of specified tests 51
t/Port_Configuration.t ....
1..51
...
ok 39 # skip Cannot load Socket6 libraries - skipping IPv6 proto tests (...)
Failed 2/51 subtests
In my case (Socket6 libraries not loaded), 11 tests are skipped by
instruction although 13 tests are skipped in reality.
The same problem would occur if IO::Socket::UNIX wasn't installed, as 7
tests would be skipped by instruction although 8 would not run.