diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-23 07:01:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-23 07:01:19 +0000 |
commit | 24ec26fbca0b8da963d85eada395e1e6eb1134a2 (patch) | |
tree | 185a912125fae11b0ddb57a4e2c60e85592afc31 | |
parent | 8d4d26f39f9de0bc1bd7f36c9ee91a871341c52a (diff) | |
download | coreutils-24ec26fbca0b8da963d85eada395e1e6eb1134a2.tar.xz |
(out-delim3a): New test.
-rwxr-xr-x | tests/cut/Test.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/cut/Test.pm b/tests/cut/Test.pm index 126f34e6a..69da16980 100755 --- a/tests/cut/Test.pm +++ b/tests/cut/Test.pm @@ -78,6 +78,7 @@ my @tv = ( ['out-delim2', '-c1-3,2,5- --output-d=:', "abcdefg\n", "abc:efg\n", 0], # Partial overlap: index `2' is not at the start of a range. ['out-delim3', '-c1-3,2-4,6 --output-d=:', "abcdefg\n", "abcd:f\n", 0], +['out-delim3a', '-c1-3,2-4,6- --output-d=:', "abcdefg\n", "abcd:fg\n", 0], # Ensure that the following two commands produce the same output. # Before an off-by-one fix, the output from the former would not contain a `:'. ['out-delim4', '-c4-,2-3 --output-d=:', "abcdefg\n", "bc:defg\n", 0], |