diff options
author | Jim Meyering <jim@meyering.net> | 1998-04-27 04:30:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-04-27 04:30:30 +0000 |
commit | 464e2ce05d057141ebd168c72d78869a84164ea6 (patch) | |
tree | 82b3644255e996beb54bb60cc00321e224cebbc9 | |
parent | a48999494dd55565da36e0a89450c06cef78a389 (diff) | |
download | coreutils-464e2ce05d057141ebd168c72d78869a84164ea6.tar.xz |
(22a): Add test.
-rwxr-xr-x | tests/sort/Test.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/sort/Test.pm b/tests/sort/Test.pm index a46780762..8059a01f6 100755 --- a/tests/sort/Test.pm +++ b/tests/sort/Test.pm @@ -194,6 +194,9 @@ my @tv = ( ["21f", '-fs', "A\na\n_\n", "A\na\n_\n", 0], ["21g", '-fu', "a\n_\n", "a\n_\n", 0], +# This test failed until 1.22f. From Zvi Har'El. +["22a", '-k 2,2fd -k 1,1r', "3 b\n4 B\n", "4 B\n3 b\n", 0], + ); sub test_vector |