From: Jarkko Hietaniemi Date: Tue, 27 Mar 2001 15:16:07 +0000 (+0000) Subject: Add debugging output to the test. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=584c1423b993a1f0f366f71e363d76c25b391fce;p=p5sagit%2Fp5-mst-13.2.git Add debugging output to the test. p4raw-id: //depot/perl@9382 --- diff --git a/t/lib/glob-basic.t b/t/lib/glob-basic.t index ff000f0..f23908c 100755 --- a/t/lib/glob-basic.t +++ b/t/lib/glob-basic.t @@ -137,12 +137,16 @@ for (@f_ascii) { $pat = "*.test"; $ok = 1; @g_ascii = bsd_glob($pat, 0); +print "# f_ascii = @f_ascii\n"; +print "# g_ascii = @g_ascii\n"; for (@f_ascii) { $ok = 0 unless $_ eq shift @g_ascii; } print $ok ? "ok 10\n" : "not ok 10\n"; $ok = 1; @g_alpha = bsd_glob($pat); +print "# f_alpha = @f_alpha\n"; +print "# g_alpha = @g_alpha\n"; for (@f_alpha) { $ok = 0 unless $_ eq shift @g_alpha; }