Subject: | actualCast.t failure |
In XML-Xerces-2.3.0-4, one of the tests fails for reasons that, as far as I can tell, are spurious:
PERL_DL_NONLAZY=1 /opt/bin/perl5.8\.3 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/\actualCast.t
t/actualCast....ok 9/11# Looks like you planned 11 tests but only ran 9.
t/actualCast....dubious
Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 10-11
Failed 2/11 tests, 81.82% okay (less 2 skipped tests: 7 okay, 63.64%)
Failed Test Stat Wstat Total Fail Failed List of Failed
-------------------------------------------------------------------------------
t/actualCast.t 2 512 11 4 36.36% 10-11
2 subtests skipped.
Failed 1/1 test scripts, 0.00% okay. 2/11 subtests failed, 81.82% okay.
As far as I can tell, there are in fact only 9 tests in this script. Therefore fixing t/actualCast.t should require nothing more than changing the line
use Test::More tests => 11;
to
use Test::More tests => 9;
-------------------------------------------------------------------------------
Not that it matters, but here's the info on my perl and system:
$ perl -v
This is perl, v5.8.3 built for i686-linux
$ uname -ar
Linux linux 2.4.18c #1 Sun Apr 4 17:45:51 EDT 2004 i686 unknown
Debian 3.0 stable release (mostly)