[svn:parrot] r48002 - trunk/t/configure

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Mon Jul 5 01:53:17 UTC 2010


Author: jkeenan
Date: Mon Jul  5 01:53:17 2010
New Revision: 48002
URL: https://trac.parrot.org/parrot/changeset/48002

Log:
Eliminate leading newline to make skip_all reason show up. Minor touchups.

Modified:
   trunk/t/configure/017-revision_from_cache.t
   trunk/t/configure/018-revision_to_cache.t
   trunk/t/configure/061-revision_from_cache.t

Modified: trunk/t/configure/017-revision_from_cache.t
==============================================================================
--- trunk/t/configure/017-revision_from_cache.t	Mon Jul  5 01:47:37 2010	(r48001)
+++ trunk/t/configure/017-revision_from_cache.t	Mon Jul  5 01:53:17 2010	(r48002)
@@ -12,7 +12,7 @@
 }
 else {
     plan skip_all =>
-        qq{Relevant only when working in checkout from repository and prior to configuration};
+        q{Relevant only when working in checkout from repository and prior to configuration};
 }
 use Carp;
 use Cwd;

Modified: trunk/t/configure/018-revision_to_cache.t
==============================================================================
--- trunk/t/configure/018-revision_to_cache.t	Mon Jul  5 01:47:37 2010	(r48001)
+++ trunk/t/configure/018-revision_to_cache.t	Mon Jul  5 01:53:17 2010	(r48002)
@@ -12,7 +12,7 @@
 }
 else {
     plan skip_all =>
-        qq{Relevant only when working in checkout from repository and prior to configuration};
+        q{Relevant only when working in checkout from repository and prior to configuration};
 }
 use Carp;
 use Cwd;

Modified: trunk/t/configure/061-revision_from_cache.t
==============================================================================
--- trunk/t/configure/061-revision_from_cache.t	Mon Jul  5 01:47:37 2010	(r48001)
+++ trunk/t/configure/061-revision_from_cache.t	Mon Jul  5 01:53:17 2010	(r48002)
@@ -7,10 +7,17 @@
 use warnings;
 
 use Test::More;
-plan( skip_all =>
-    "\nRelevant only when working in checkout from repository and during configuration" )
-    unless (-e 'DEVELOPING' and ! -e 'Makefile');
-plan( tests => 25 );
+#plan( skip_all =>
+#    "\nRelevant only when working in checkout from repository and during configuration" )
+#    unless (-e 'DEVELOPING' and ! -e 'Makefile');
+#plan( tests => 25 );
+if (-e 'DEVELOPING' and ! -e 'Makefile') {
+    plan tests => 25;
+}
+else {
+    plan skip_all =>
+        q{Relevant only when working in checkout from repository and prior to configuration};
+}
 use Carp;
 use Cwd;
 use File::Copy;


More information about the parrot-commits mailing list