diff options
author | Roland McGrath <roland@gnu.org> | 2001-08-23 04:34:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-08-23 04:34:36 +0000 |
commit | d9022567542acf6734184696596aef0851e7f8f0 (patch) | |
tree | 52a71ce3399bbc5c688175aa5b1900b8feb8604c | |
parent | 5cd6f8f73519ba7bf6c702c2d244001b48b6f0a0 (diff) | |
download | glibc-d9022567542acf6734184696596aef0851e7f8f0.tar glibc-d9022567542acf6734184696596aef0851e7f8f0.tar.gz glibc-d9022567542acf6734184696596aef0851e7f8f0.tar.bz2 glibc-d9022567542acf6734184696596aef0851e7f8f0.zip |
2001-08-22 Roland McGrath <roland@frob.com>
* conform/conformtest.pl (checknamespace): Sort the output list.
-rw-r--r-- | conform/conformtest.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conform/conformtest.pl b/conform/conformtest.pl index ebef130e96..b15656bd60 100644 --- a/conform/conformtest.pl +++ b/conform/conformtest.pl @@ -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"); |