From: Jim Meyering Date: Wed, 3 Jan 1996 18:20:16 +0000 (+0000) Subject: . X-Git-Tag: TEXTUTILS-1_13j~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d3939986171c18fa630d166e140585663583e35;p=thirdparty%2Fcoreutils.git . --- diff --git a/tests/sort/test.data.pl b/tests/sort/test.data.pl index 1db1f02502..4cf6974cb8 100755 --- a/tests/sort/test.data.pl +++ b/tests/sort/test.data.pl @@ -105,3 +105,10 @@ ("14a", '-d -u', "mal\nmal-\nmala\n", "mal\nmala\n", 0); # Be sure to fix the (translate && ignore) case in keycompare. ("14b", '-f -d -u', "mal\nmal-\nmala\n", "mal\nmala\n", 0); +# +# Experiment with -i. +("15a", '-i -u', "a\na\1\n", "a\n", 0); +("15b", '-i -u', "a\n\1a\n", "a\n", 0); +("15c", '-i -u', "a\1\na\n", "a\1\n", 0); +("15d", '-i -u', "\1a\na\n", "\1a\n", 0); +("15e", '-i -u', "a\n\1\1\1\1\1a\1\1\1\1\n", "a\n", 0);