summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-01-03 18:20:16 +0000
committerJim Meyering <jim@meyering.net>1996-01-03 18:20:16 +0000
commit1d3939986171c18fa630d166e140585663583e35 (patch)
tree4b930c7d2d5e644d53b966b3efa4c568cb6fab2c /tests
parent008d74220bcbc5b8da0a0f176d98ce11d6953a86 (diff)
downloadcoreutils-1d3939986171c18fa630d166e140585663583e35.tar.xz
.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/sort/test.data.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/sort/test.data.pl b/tests/sort/test.data.pl
index 1db1f0250..4cf6974cb 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);