Add more debug output to the test.
Jarkko Hietaniemi [Fri, 13 Apr 2001 12:29:15 +0000 (12:29 +0000)]
p4raw-id: //depot/perl@9697

t/lib/cwd.t

index 1ddaf25..eb5ec7a 100644 (file)
@@ -114,6 +114,9 @@ if ($Config{d_symlink}) {
 
     my $abs_path      = Cwd::abs_path($rel);
     my $fast_abs_path = Cwd::fast_abs_path($rel);
+    print "# abs_path      $abs_path\n";
+    print "# fast_abs_path $fast_abs_path\n";
+    print "# target        $target\n";
     print +($abs_path      eq $target ? "" : "not "), "ok 13\n";
     print +($fast_abs_path eq $target ? "" : "not "), "ok 14\n";