sort: fix sort -s -u, closes 14871

function                                             old     new   delta
sort_main                                            851     856      +5

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2022-07-29 16:40:00 +02:00
parent 00f2a35b83
commit 5479c435fd
2 changed files with 15 additions and 4 deletions

View File

@@ -230,4 +230,14 @@ testing "sort -k2,2M" \
3 March
" ""
testing "sort -s -u" \
"sort -s -u -k 2 input" "\
z a
z b
" "\
z b
a b
z a
a a" ""
exit $FAILCOUNT