2001-08-22 Roland McGrath <roland@frob.com>

* conform/conformtest.pl (checknamespace): Sort the output list.
This commit is contained in:
Roland McGrath 2001-08-23 04:34:36 +00:00
parent 5cd6f8f735
commit d902256754
1 changed files with 2 additions and 1 deletions

View File

@ -278,7 +278,8 @@ sub checknamespace {
unlink "$fnamebase.c";
$realerror = 0;
if ($#errors != 0) {
foreach $f (%errors) {
# Sort the output list so it's easier to compare results with diff.
foreach $f (sort keys(%errors)) {
if ($errors{$f} == 1) {
if ($realerror == 0) {
printf ("FAIL\n " . "-" x 72 . "\n");