summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-11-28 16:52:49 +0000
committerJim Meyering <jim@meyering.net>1995-11-28 16:52:49 +0000
commit83cf5efca97425a2854d690e0771b5e40aa36ae6 (patch)
treebae4c62d4f75464c76aca979c09d01c6313ce9c2 /tests
parent4d9669b8d9680ee3fdad7646b5eec682e2dbedab (diff)
downloadcoreutils-83cf5efca97425a2854d690e0771b5e40aa36ae6.tar.xz
Tests for bug reported by Roger Peel" <R.Peel@ee.surrey.ac.uk>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/sort/test.data.pl17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/sort/test.data.pl b/tests/sort/test.data.pl
index 313fe889f..1d19b5a35 100755
--- a/tests/sort/test.data.pl
+++ b/tests/sort/test.data.pl
@@ -48,3 +48,20 @@
("8a", '-k 2.,3', "", "", 1);
# FIXME: report an error for `,' but missing POS2
("8b", '-k 2,', "", "", 1);
+#
+# Test new -g option.
+("9a", '-g', "1e2\n2e1\n", "2e1\n1e2\n", 0);
+# Make sure -n works how we expect.
+("9b", '-n', "1e2\n2e1\n", "1e2\n2e1\n", 0);
+("9c", '-n', "2e1\n1e2\n", "1e2\n2e1\n", 0);
+("9d", '-k2g', "a 1e2\nb 2e1\n", "b 2e1\na 1e2\n", 0);
+#
+# Bug reported by Roger Peel" <R.Peel@ee.surrey.ac.uk>
+("10a", '-t : -k 2.2,2.2', ":ba\n:ab\n", ":ba\n:ab\n", 0);
+# Equivalent to above, but using obsolescent `+pos -pos' option syntax.
+("10b", '-t : +1.1 -1.2', ":ba\n:ab\n", ":ba\n:ab\n", 0);
+#
+# The same as the preceding two, but with input lines reversed.
+("10c", '-t : -k 2.2,2.2', ":ab\n:ba\n", ":ba\n:ab\n", 0);
+# Equivalent to above, but using obsolescent `+pos -pos' option syntax.
+("10d", '-t : +1.1 -1.2', ":ab\n:ba\n", ":ba\n:ab\n", 0);