# New Ticket Created by  Andy Dougherty 
# Please include the string:  [perl #18191]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=18191 >


When parrot is built outside of CVS, t/src/manifest.t fails with:
    t/src/manifest......# Looks like you planned 4 tests but only ran 3.
    dubious
            Test returned status 1 (wstat 256, 0x100)
    DIED. FAILED test 4
            Failed 1/4 tests, 75.00% okay (less 1 skipped test: 2 okay, 50.00%)

The skip() needs to skip 2 tests, not just one.  Here's the fix:

--- parrot-orig/t/src/manifest.t        Tue Oct 22 23:16:28 2002
+++ parrot-andy/t/src/manifest.t        Fri Nov  1 12:14:03 2002
@@ -17,7 +17,7 @@
 sub read_manifest;
 
 SKIP: {
-  skip ('No CVS version', 1) unless -e 'CVS';
+  skip ('No CVS version', 2) unless -e 'CVS';
 
   local @cvs_entries;
   find { wanted => \&scan_cvs }, '.';

-- 
    Andy Dougherty              [EMAIL PROTECTED]



Reply via email to