Author: kwilliams
Date: Wed Nov  7 19:30:02 2007
New Revision: 10194

Modified:
   Module-Build/trunk/t/compat.t

Log:
Remove useless deletion of non-existent thingy

Modified: Module-Build/trunk/t/compat.t
==============================================================================
--- Module-Build/trunk/t/compat.t       (original)
+++ Module-Build/trunk/t/compat.t       Wed Nov  7 19:30:02 2007
@@ -18,7 +18,7 @@
 #find_in_path does not understand VMS.
 
 if ( $Config{make} && $^O ne 'VMS' ? find_in_path($Config{make}) : 1 ) {
-    plan tests => 38 + @makefile_types*$tests_per_type*2;
+    plan tests => 37 + @makefile_types*$tests_per_type*2;
 } else {
     plan skip_all => "Don't know how to invoke 'make'";
 }
@@ -214,9 +214,6 @@
        qr/(?:# .+basic\.+ok\s+(?:[\d.]+\s*m?s\s*)?)# All tests/,
        'Should be non-verbose';
 
-  $mb->delete_filetree($libdir);
-  ok ! -e $libdir, "Sample installation directory should be cleaned up";
-
   stdout_of( sub { $mb->do_system(@make, 'realclean'); } );
   ok ! -e $makefile, "$makefile shouldn't exist";
 

Reply via email to