Subject: | UNKNOWN reports not created with nmake |
Not sure if this an nmake specific or Win32 or something else. However, during smoke testing, all UNKNOWN reports were incorrectly filed as PASSES due to the text message being printed out contained within quotes. Patch attached.
Cannot install 0.049 as smoke testing fails with it, so have had to use the previous version for the patch.
CPANPLUS-0.048
Perl 5.6.1
Windows 2000 Pro
--- C:\wip\diffs\CPANPLUS-0.048\CPANPLUS\Internals/Report.pm Sun Oct 5 18:15:18 2003
+++ C:\wip\diffs\CPANPLUS-0.048\CPANPLUS\Internals/Report-unknown.pm Mon Apr 19 17:26:23 2004
@@ -83,7 +83,7 @@
$grade ||= 'fail';
}
elsif (
- $buffer =~ /^No tests defined for .* extension.\s*$/m and
+ $buffer =~ /^'?No tests defined for .* extension.'?\s*$/m and
($buffer !~ /\*\.t/m and $buffer !~ /test\.pl/m)
) {
$grade = 'unknown';