From: Jim Meyering Date: Sun, 14 Sep 1997 02:20:55 +0000 (+0000) Subject: Add tests 19a and 19b. X-Git-Tag: TEXTUTILS-1_22a~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75b17ba951693fa2e91a868535df4529f2536ad6;p=platform%2Fupstream%2Fcoreutils.git Add tests 19a and 19b. --- diff --git a/tests/sort/Test.pm b/tests/sort/Test.pm index bf2729f..1419147 100755 --- a/tests/sort/Test.pm +++ b/tests/sort/Test.pm @@ -149,6 +149,14 @@ my @tv = ( # Equivalent to above, except it ignores both leading and trailing blanks. ["18e", '-nb -k1.1,1.2', " 901\n100\n", "100\n 901\n", 0], +# This looks odd, but works properly -- 2nd keyspec is never +# used because all lines are different. +["19a", '+0 +1nr', "b 2\nb 1\nb 3\n", "b 1\nb 2\nb 3\n", 0], + +# The test *intended* by the author of the above, but using the +# more-intuitive POSIX-style -k options. +["19b", '-k1,1 -k2nr', "b 2\nb 1\nb 3\n", "b 3\nb 2\nb 1\n", 0], + ); sub test_vector