From: Jim Meyering Date: Tue, 22 Jul 2003 12:44:22 +0000 (+0000) Subject: New test for the above fix. X-Git-Tag: v5.0.90~158 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c55974d115e2430acab42cf06b004c9f7e83b4e2;p=thirdparty%2Fcoreutils.git New test for the above fix. --- diff --git a/tests/cut/Test.pm b/tests/cut/Test.pm index 3f5e470df5..126f34e6ac 100755 --- a/tests/cut/Test.pm +++ b/tests/cut/Test.pm @@ -82,6 +82,8 @@ my @tv = ( # 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], ['out-delim5', '-c2-3,4- --output-d=:', "abcdefg\n", "bc:defg\n", 0], +# This test would fail for cut from coreutils-5.0.1 and earlier. +['out-delim6', '-c2,1-3 --output-d=:', "abc\n", "abc\n", 0], );