Author: dagolden
Date: Mon Dec 21 11:44:23 2009
New Revision: 13700

Modified:
   Module-Build/trunk/Changes
   Module-Build/trunk/t/bundle_inc.t

Log:
skip t/bundle_inc.t unless MB_TEST_EXPERIMENTAL is true

Modified: Module-Build/trunk/Changes
==============================================================================
--- Module-Build/trunk/Changes  (original)
+++ Module-Build/trunk/Changes  Mon Dec 21 11:44:23 2009
@@ -10,6 +10,12 @@
    might configure_requires a new Module::Build after Build.PL was already
    run for an earlier distribution. [David Golden, on advice of Matt Trout]
 
+ Other:
+
+ - t/bundle_inc.t fails in odd ways.  This test of an experimental feature
+   should not prevent users from installing Module::Build, so this test
+   now skips unless $ENV{MB_TEST_EXPERIMENTAL} is true
+
 0.36 - Sun Dec 20 15:02:38 EST 2009
 
 No changes from 0.35_15 other than the version number.

Modified: Module-Build/trunk/t/bundle_inc.t
==============================================================================
--- Module-Build/trunk/t/bundle_inc.t   (original)
+++ Module-Build/trunk/t/bundle_inc.t   Mon Dec 21 11:44:23 2009
@@ -18,6 +18,9 @@
 if ( $ENV{PERL_CORE} ) {
   plan skip_all => 'bundle_inc tests will never succeed in PERL_CORE';
 }
+elsif ( ! $ENV{MB_TEST_EXPERIMENTAL} ) {
+  plan skip_all => '$ENV{MB_TEST_EXPERIMENTAL} is not set';
+}
 elsif ( ! MBTest::check_EUI() ) {
   plan skip_all => 'ExtUtils::Installed takes too long on your system';
 }

Reply via email to