Subject: | UNKNOWN report are being marked as PASSes |
There is a bug in the latest CPANPLUS which affects reports. Currently UNKNOWN reports are not getting marked as such, but as PASS reports, due to a missing line in Dist::MM.pm. Patch attached as applied to the latest devel tarball (15th October 2005).
--- devel/lib/CPANPLUS/Dist/MM.pm Fri Oct 14 13:50:22 2005
+++ devel-barbie/lib/CPANPLUS/Dist/MM.pm Fri Oct 21 16:30:46 2005
@@ -565,6 +565,7 @@
### pick up on this
if ( NO_TESTS_DEFINED->( $captured ) ) {
msg( NO_TESTS_DEFINED->( $captured ), 0 )
+ $fail++;
} else {
msg( loc( "MAKE TEST passed: %2", $captured ) );
}