diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-18 08:01:26 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-18 08:01:26 +0000 |
commit | 4efc97aa9f11c2b753b1bbaa9e79b3f7598badbd (patch) | |
tree | 780e400ae393f8dffe429ca07d788db61f92dc1a /tests/uniq | |
parent | 66021e0b0f51a196a1a23f04a62d24228fc49da7 (diff) | |
download | coreutils-4efc97aa9f11c2b753b1bbaa9e79b3f7598badbd.tar.xz |
(101, 102): Update tests of -c accordingly.
Diffstat (limited to 'tests/uniq')
-rw-r--r-- | tests/uniq/Test.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/uniq/Test.pm b/tests/uniq/Test.pm index c254ef2c4..c846a1d02 100644 --- a/tests/uniq/Test.pm +++ b/tests/uniq/Test.pm @@ -70,8 +70,8 @@ my @tv = ( ['93', '-f 2', "a\ta a\na a a\n", "a\ta a\n", 0], ['94', '-f 1', "a\ta\na\ta\n", "a\ta\n", 0], # Check the count option; add tests for other options too -['101', '-c', "a\nb\n", " 1\ta\n 1\tb\n", 0], -['102', '-c', "a\na\n", " 2\ta\n", 0], +['101', '-c', "a\nb\n", " 1 a\n 1 b\n", 0], +['102', '-c', "a\na\n", " 2 a\n", 0], # Check the local -D (--all-repeated) option ['110', '-D', "a\na\n", "a\na\n", 0], ['111', '-D -w1',"a a\na b\n", "a a\na b\n", 0], |