U/WIN test nit for John P. Linderman.
Jarkko Hietaniemi [Wed, 21 May 2003 13:03:34 +0000 (13:03 +0000)]
p4raw-id: //depot/perl@19579

ext/Cwd/t/cwd.t

index 834a399..514f2b1 100644 (file)
@@ -46,11 +46,11 @@ if ($^O eq 'MSWin32') {
 }
 $pwd_cmd =~ s=\\=/=g if ($^O eq 'dos');
 
-print "# native pwd = '$pwd_cmd'\n";
-
 SKIP: {
     skip "No native pwd command found to test against", 4 unless $pwd_cmd;
 
+    print "# native pwd = '$pwd_cmd'\n";
+
     local @ENV{qw(PATH IFS CDPATH ENV BASH_ENV)};
     my ($pwd_cmd_untainted) = $pwd_cmd =~ /^(.+)$/; # Untaint.
     chomp(my $start = `$pwd_cmd_untainted`);