diff options
author | Jim Meyering <jim@meyering.net> | 1996-11-25 03:08:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-11-25 03:08:52 +0000 |
commit | 520f4efee945a87095b176a448d6defeaaea1a5b (patch) | |
tree | d06ab4aa8efe8c1431e7babaa0a21ebae3e285d7 /tests/sort | |
parent | 0d43bad18e5ec6fd444612250b262944633058b6 (diff) | |
download | coreutils-520f4efee945a87095b176a448d6defeaaea1a5b.tar.xz |
Add 5 tests to exercize just-fixed code.
Diffstat (limited to 'tests/sort')
-rwxr-xr-x | tests/sort/Test.pm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/sort/Test.pm b/tests/sort/Test.pm index a666d1855..cccbe209d 100755 --- a/tests/sort/Test.pm +++ b/tests/sort/Test.pm @@ -131,6 +131,24 @@ use strict; # of sort from textutils-1.19p and before. ["17", '-c', "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", "", 0], +# POSIX says -n no longer implies -b, so here we're comparing ` 9' and `10'. +["18a", '-k1.1,1.2n', " 901\n100\n", " 901\n100\n", 0], + +# Just like above, because the the global `-b' has no effect on the +# key specifier when a key-specific option (`n' in this case) is used. +["18b", '-b -k1.1,1.2n', " 901\n100\n", " 901\n100\n", 0], + +# No change from above because the `b' on the key-end part of the +# key specifier makes sort ignore only trailing blanks +["18c", '-k1.1,1.2nb', " 901\n100\n", " 901\n100\n", 0], + +# Here we're comparing `90' and `10', because the `b' on the key-start +# specifier makes sort ignore *leading* blanks on that key. +["18d", '-k1.1b,1.2n', " 901\n100\n", "100\n 901\n", 0], + +# 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], + ); 1; |