The following patch removes the phantom failure:

[-.lib]locale...........................FAILED on test 118

which appears due to output that exceeds reasonable
record size (I should note that there are 72 installed
locales on the test machine in question: that leads to
a long C<# Locales = C POSIX ...> line).

--- lib/locale.t_orig   Wed Apr 10 09:10:25 2002
+++ lib/locale.t  Tue Apr 23 17:07:10 2002
@@ -432,7 +432,10 @@

 @Locale = sort @Locale;

-debug "# Locales = @Locale\n";
+debug "# Locales =\n";
+for ( @Locale ) {
+    debug "# $_\n";
+}

 my %Problem;
 my %Okay;
End of Patch.

Peter Prymmer


Reply via email to