]> Zhao Yanbai Git Server - minix.git/commitdiff
testsh?.sh: fix sort(1) invocations
authorThomas Veerman <thomas@minix3.org>
Fri, 7 Dec 2012 15:44:22 +0000 (15:44 +0000)
committerThomas Veerman <thomas@minix3.org>
Fri, 7 Dec 2012 15:44:28 +0000 (15:44 +0000)
Newly imported sort(1) works slightly differently. In fact, the old
sort(1) had a bug and the tests invoked sort(1) the wrong way.

test/testsh1.sh
test/testsh2.sh

index 13407d9a078ea63cc5555e20fd5c8e0af43f84df..0a9e20ff9e6737133ffdb1c2388e9715e66fbf35 100755 (executable)
@@ -229,7 +229,7 @@ sort <x >x1
 if cmp -s y x1; then : ; else echo Error on sort test 2; fi
 sort -r <x1 >x2
 if cmp -s x2 z; then : ; else echo Error on sort test 3; fi
-sort +1 -n <x |head -1 >y
+sort -k 2n <x |head -1 >y
 echo "bibelot 3" >z
 if cmp -s y z; then : ; else echo Error on sort test 4; fi
 
index 3ceb6b8a99aff900819bf6c767d6b9fa75eae6b9..d55af2a3fb0b42f3b50448af599fb81f70e992f3 100755 (executable)
@@ -247,7 +247,7 @@ cat >answer <<END
 END
 
 prep x | sort | uniq -c >y1
-sort +1 <y1 >y
+sort <y1 >y
 if cmp -s y answer; then : ; else echo Error in pipeline test 1; fi
 
 cat $f $f $f | sort | uniq >x