Added some skips for win32/cygwin in order to ship
rkinyon [Mon, 10 Mar 2008 00:01:21 +0000 (00:01 +0000)]
t/11_optimize.t
t/44_upgrade_db.t

index 07b1130..61741bf 100644 (file)
@@ -2,7 +2,12 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More tests => 9;
+use Test::More;
+
+plan skip_all => "Skipping the optimize tests on Win32/cygwin for now."
+    if ( $^O eq 'MSWin32' || $^O eq 'cygwin' );
+
+plan tests => 9;
 
 use t::common qw( new_fh );
 
index ba0a06a..6c7abde 100644 (file)
@@ -4,6 +4,9 @@ use Test::More;
 
 # Add skips here
 BEGIN {
+    plan skip_all => "Skipping the upgrade_db.pl tests on Win32/cygwin for now."
+        if ( $^O eq 'MSWin32' || $^O eq 'cygwin' );
+
     my @failures;
     eval { use Pod::Usage 1.3; }; push @failures, 'Pod::Usage' if $@;
     eval { use IO::Scalar; }; push @failures, 'IO::Scalar' if $@;