From: Rob Landley Date: Mon, 26 Dec 2016 03:22:23 +0000 (-0600) Subject: Add test for last sort commit. X-Git-Tag: android-x86-8.1-r1~13^2^2^2~10^2~5 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=17ba06507207c9226c5449325e8984b94daf68cd;p=android-x86%2Fexternal-toybox.git Add test for last sort commit. --- 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