This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add debugging output to the test.
[perl5.git] / t / lib / glob-basic.t
index ff000f0..f23908c 100755 (executable)
@@ -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;
 }