From: rkinyon Date: Mon, 10 Mar 2008 00:01:21 +0000 (+0000) Subject: Added some skips for win32/cygwin in order to ship X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=49669188700cc267327fd956a0a811026b748e43;p=dbsrgits%2FDBM-Deep.git Added some skips for win32/cygwin in order to ship --- diff --git a/t/11_optimize.t b/t/11_optimize.t index 07b1130..61741bf 100644 --- a/t/11_optimize.t +++ b/t/11_optimize.t @@ -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 ); diff --git a/t/44_upgrade_db.t b/t/44_upgrade_db.t index ba0a06a..6c7abde 100644 --- a/t/44_upgrade_db.t +++ b/t/44_upgrade_db.t @@ -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 $@;