Skip to content

Commit

Permalink
2001-08-22 Roland McGrath <[email protected]>
Browse files Browse the repository at this point in the history
	* conform/conformtest.pl (checknamespace): Sort the output list.
  • Loading branch information
Roland McGrath committed Aug 23, 2001
1 parent 5cd6f8f commit d902256
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion conform/conformtest.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit d902256

Please sign in to comment.