From: Nicholas Clark Date: Sat, 12 Jun 2010 18:05:51 +0000 (+0100) Subject: Better diagnostics on detecting case sensitive file name clashes. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0f7807cda10b798e3d16820699b3a52f13a8de16;p=p5sagit%2Fp5-mst-13.2.git Better diagnostics on detecting case sensitive file name clashes. --- diff --git a/t/porting/checkcase.t b/t/porting/checkcase.t index 527af22..6ae1cf8 100644 --- a/t/porting/checkcase.t +++ b/t/porting/checkcase.t @@ -20,9 +20,10 @@ find(sub { push @{$files{lc $name}}, $name; }, '..'); -foreach (values %files) { +foreach (sort values %files) { if (@$_ > 1) { print "not ok ".++$test_count. " - ". join(", ", @$_), "\n"; + print STDERR "# $_\n" foreach @$_; } else { print "ok ".++$test_count. " - ". join(", ", @$_), "\n"; }