File::Spec::catfile() canonifies everything to blackslashes on
Gurusamy Sarathy [Mon, 24 Sep 2001 18:13:23 +0000 (18:13 +0000)]
windows :-(

p4raw-id: //depot/perl@12183

lib/ExtUtils/Manifest.t

index 6b43d73..f62665e 100644 (file)
@@ -105,6 +105,7 @@ is( join(' ', filecheck() ), 'bar', 'listing skipped with filecheck()' );
 # add a subdirectory and a file there that should be found
 ok( mkdir( 'moretest', 0777 ), 'created moretest directory' );
 my $quux = File::Spec->catfile( 'moretest', 'quux' );
+$quux =~ s#\\#/#g;
 add_file( $quux, 'quux' );
 ok( exists( ExtUtils::Manifest::manifind()->{$quux} ), "manifind found $quux" );