From: Jim Meyering Date: Sat, 10 Jul 1999 07:34:52 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: TEXTUTILS-1_22n~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dd7e9b194e40d8341bf03b02d89ddad64cd33d6d;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/tests/join/Test.pm b/tests/join/Test.pm index 9e73acfff4..563f431c31 100644 --- a/tests/join/Test.pm +++ b/tests/join/Test.pm @@ -98,6 +98,13 @@ my @tv = ( # From Paul Eggert: fixed in 1.22n ['sp-vs-blank', '', ["\f 1\n", "\f 2\n"], "\f 1 2\n", 0], +# From Paul Eggert: fixed in 1.22n (this would fail on Solaris7, +# with LC_ALL set to en_US). +# Unfortunately, that Solaris7's en_US local folds case (making +# the first input file sorted) is not portable, so this test would +# fail on e.g. Linux systems, because the input to join isn't sorted. +# ['lc-collate', '', ["a 1a\nB 1B\n", "B 2B\n"], "B 1B 2B\n", 0], + );