about summary refs log tree commit diff
path: root/conform
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-08-23 04:34:36 +0000
committerRoland McGrath <roland@gnu.org>2001-08-23 04:34:36 +0000
commitd9022567542acf6734184696596aef0851e7f8f0 (patch)
tree52a71ce3399bbc5c688175aa5b1900b8feb8604c /conform
parent5cd6f8f73519ba7bf6c702c2d244001b48b6f0a0 (diff)
downloadglibc-d9022567542acf6734184696596aef0851e7f8f0.tar.gz
glibc-d9022567542acf6734184696596aef0851e7f8f0.tar.xz
glibc-d9022567542acf6734184696596aef0851e7f8f0.zip
2001-08-22 Roland McGrath <roland@frob.com>
	* conform/conformtest.pl (checknamespace): Sort the output list.
Diffstat (limited to 'conform')
-rw-r--r--conform/conformtest.pl3
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");