Subject: | version numbers mismatch, causing t/dist.t to fail |
t/dist.t fails:
# Failed test 'module versions match'
# at t/dist.t line 19.
# Looks like you failed 1 test of 1.
t/dist....dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 1
Failed 1/1 tests, 0.00% okay
Failed Test Stat Wstat Total Fail List of Failed
-------------------------------------------------------------------------------
t/dist.t 1 256 1 1 1
Failed 1/1 test scripts. 1/1 subtests failed.
Files=1, Tests=1, 0 wallclock secs ( 0.10 cusr + 0.01 csys = 0.11 CPU)
Failed 1/1 test programs. 1/1 subtests failed.
Apparently this is because the $VERSION values in DBIx::Interp and
SQL::Interp don't match:
# find . -name Interp.pm -exec grep -H VERSION {} \;
./blib/lib/DBIx/Interp.pm:our $VERSION = '1.00';
./blib/lib/SQL/Interp.pm:our $VERSION = '1.01';
Editing DBIx::Interp's $VERSION to 1.01 fixes it. (Assuming that they
are indeed supposed to match, and that an old version wasn't bundled in
by mistake.)