From: Jim Meyering Date: Sat, 25 Aug 2001 05:48:19 +0000 (+0000) Subject: Add new test, #54, for the just-fixed bug. X-Git-Tag: TEXTUTILS-2_0_15~335 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b087829d9b0eb660d77b5a23c78d756ce42a8a6f;p=thirdparty%2Fcoreutils.git Add new test, #54, for the just-fixed bug. --- diff --git a/tests/uniq/Test.pm b/tests/uniq/Test.pm index a94c0fc5c1..4f087b8c71 100644 --- a/tests/uniq/Test.pm +++ b/tests/uniq/Test.pm @@ -48,6 +48,8 @@ my @tv = ( ['51', '-f 1 -s 1',"a aaa\nb aaa\n", "a aaa\n", 0], ['52', '-s 1 -f 1',"a aaa\nb ab\n", "a aaa\nb ab\n", 0], ['53', '-s 1 -f 1',"a aaa\nb aaa\n", "a aaa\n", 0], +# Fixed in 2.0.15 +['54', '-s 4', "abc\nabcd\n", "abc\n", 0], # Only account for a number of characters ['60', '-w 1',"a a\nb a\n", "a a\nb a\n", 0], ['61', '-w 3',"a a\nb a\n", "a a\nb a\n", 0],