summaryrefslogtreecommitdiff
path: root/tests/sort/Test.pm
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-11-04 23:12:13 +0000
committerJim Meyering <jim@meyering.net>1999-11-04 23:12:13 +0000
commit53d2086432c6652a5757a7134edc381b4942cb14 (patch)
treecf5b370e7b713d142b946d6d53cc98126197880c /tests/sort/Test.pm
parentcec217ed931f2e4384a3c167f0d3ee4626f247d6 (diff)
downloadcoreutils-53d2086432c6652a5757a7134edc381b4942cb14.tar.xz
Do not consider newline to be part of a line when comparing lines
in `sort' and `comm'. POSIX.2 requires that we consider newline, but this is a bug in the spec and the bug will likely be fixed. Update tests `use-nl' and `11d' to reflect this change.
Diffstat (limited to 'tests/sort/Test.pm')
-rwxr-xr-xtests/sort/Test.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sort/Test.pm b/tests/sort/Test.pm
index b48031e29..5bfd30953 100755
--- a/tests/sort/Test.pm
+++ b/tests/sort/Test.pm
@@ -117,7 +117,7 @@ my @tv = (
# Before 1.22m, the first key comparison reported equality.
# With 1.22m, they compare different: "a" sorts before "a\n",
# and the second key spec isn't even used.
-["11d", '-t: -k2,2b -k3,3', "z:a :b\na\t:a\n", "z:a :b\na\t:a\n", 0],
+["11d", '-t: -k2,2b -k3,3', "z:a :b\na\t:a\n", "a\t:a\nz:a :b\n", 0],
#
# Exercise bug re comparing `-' and integers.
["12a", '-n -t: +1', "a:1\nb:-\n", "b:-\na:1\n", 0],
@@ -235,7 +235,7 @@ my @tv = (
#
# because \t comes before \n in the collating sequence, and the trailing
# \n's are part of the input line.
-["use-nl", '', "\n\t\n", "\t\n\n", 0],
+["use-nl", '', "\n\t\n", "\n\t\n", 0],
);