Author: ericwilhelm
Date: Mon Jan 12 22:11:21 2009
New Revision: 12423

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

Log:
** merge from https://svn.perl.org/modules/Module-Build/branches/0.31011
t/tilde.t - skip sudo coverage on win32
Changes   - 0.31011 entry


Modified: Module-Build/trunk/Changes
==============================================================================
--- Module-Build/trunk/Changes  (original)
+++ Module-Build/trunk/Changes  Mon Jan 12 22:11:21 2009
@@ -6,6 +6,11 @@
  - passthrough Makefile.PL will now play nice with cpantesters' on
    exit(0) (RT#32018) [Eric Wilhelm]
 
+0.31011 - Mon Jan 12 21:57:04 PST 2009
+
+ Bug Fixes
+ - t/tilde.t had been failing on MSWin32 (RT#42349)
+
 0.3101 - Mon Jan 12 13:52:36 PST 2009
 
  Other

Modified: Module-Build/trunk/t/tilde.t
==============================================================================
--- Module-Build/trunk/t/tilde.t        (original)
+++ Module-Build/trunk/t/tilde.t        Mon Jan 12 22:11:21 2009
@@ -69,7 +69,8 @@
        $home );
 
     # Test when HOME is different from getpwuid(), as in sudo.
-    {
+    SKIP: {
+        skip "Win32 does not sudo anyway", 1 if($^O eq 'MSWin32');
         local $ENV{HOME} = '/wibble/whomp';
 
         is( run_sample( $p => '~' )->$p(),    "/wibble/whomp" );

Reply via email to