diff options
author | Jim Meyering <jim@meyering.net> | 2012-11-23 23:09:10 -0800 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2012-11-24 15:23:28 -0800 |
commit | 1b874511b60252a5c71c7a29046afdc99e5391bb (patch) | |
tree | 0479d0d9ae8111f1007e94b5c62679d4bb5658ab /tests/misc/cut.pl | |
parent | 6f374d7c4285d23eb09b5386a5feb94aa25126bb (diff) | |
download | coreutils-1b874511b60252a5c71c7a29046afdc99e5391bb.tar.xz |
cut: treat -b2-,3- like -b2-, not like -b3-
* src/cut.c (set_fields): When two right-open-ended ranges are
specified, don't blindly let the latter one take precedence over
the former. Instead, use the union of the ranges.
* tests/misc/cut.pl: Add tests to exercise this.
* NEWS (Bug fixes): Mention it.
Reported by Marcel Böhme in http://bugs.gnu.org/12966
Thanks to Berhard Voelker for catching log and NEWS typos.
Diffstat (limited to 'tests/misc/cut.pl')
-rwxr-xr-x | tests/misc/cut.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/misc/cut.pl b/tests/misc/cut.pl index cd5655569..cb4781a7d 100755 --- a/tests/misc/cut.pl +++ b/tests/misc/cut.pl @@ -163,6 +163,9 @@ my @Tests = ['big-unbounded-b', '--output-d=:', '-b1234567890-', {IN=>''}, {OUT=>''}], ['big-unbounded-c', '--output-d=:', '-c1234567890-', {IN=>''}, {OUT=>''}], ['big-unbounded-f', '--output-d=:', '-f1234567890-', {IN=>''}, {OUT=>''}], + + ['overlapping-unbounded-1', '-b3-,2-', {IN=>"1234\n"}, {OUT=>"234\n"}], + ['overlapping-unbounded-2', '-b2-,3-', {IN=>"1234\n"}, {OUT=>"234\n"}], ); if ($mb_locale ne 'C') |