diff options
author | Rob Landley <rob@landley.net> | 2016-12-25 21:22:23 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-12-25 21:22:23 -0600 |
commit | 17ba06507207c9226c5449325e8984b94daf68cd (patch) | |
tree | ff46b8f6ef724e840e5b5374afc8b2fd5ddb76c2 /tests | |
parent | 7a7378629cc3d67b27c64452391b80aa8a5a6481 (diff) | |
download | toybox-17ba06507207c9226c5449325e8984b94daf68cd.tar.gz |
Add test for last sort commit.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/sort.test | 3 |
1 files changed, 3 insertions, 0 deletions
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 |