From 17ba06507207c9226c5449325e8984b94daf68cd Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 25 Dec 2016 21:22:23 -0600 Subject: Add test for last sort commit. --- tests/sort.test | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/sort.test') diff --git a/tests/sort.test b/tests/sort.test index cda3db51..930403e8 100755 --- a/tests/sort.test +++ b/tests/sort.test @@ -96,6 +96,9 @@ testing "" "sort -k2,2f" "A b b\na B C\na B a\n" "" "a B a\nA b b\na B C\n" testing "" "sort -k2,2" "a B C\na B a\nA b b\n" "" "a B a\nA b b\na B C\n" testing "" "sort -f -k2,2" "A b b\na B C\na B a\n" "" "a B a\nA b b\na B C\n" +testing "" "sort -t, -k3n" "3,4,1,2\n4,1,2,3\n1,2,3,4\n2,3,4,1\n" "" \ + "1,2,3,4\n2,3,4,1\n4,1,2,3\n3,4,1,2\n" + optional SORT_FLOAT # not numbers < NaN < -infinity < numbers < +infinity -- cgit v1.2.3