diff options
author | Denys Vlasenko | 2009-07-18 16:22:26 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-07-18 16:22:26 +0200 |
commit | 6ae6426a7485b5835c23aea198b3065f491d918b (patch) | |
tree | 79ebcee570986e27d7137720ca3139af277a162b /testsuite/sort.tests | |
parent | b71ce023e9527b6afaa497ce62ca53a74cf94cef (diff) | |
download | busybox-6ae6426a7485b5835c23aea198b3065f491d918b.zip busybox-6ae6426a7485b5835c23aea198b3065f491d918b.tar.gz |
fix mountpoint test to not prevemt mkfs_xxx from making image in any file
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/sort.tests')
-rwxr-xr-x | testsuite/sort.tests | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/testsuite/sort.tests b/testsuite/sort.tests index f700dc0..627ca51 100755 --- a/testsuite/sort.tests +++ b/testsuite/sort.tests @@ -45,8 +45,8 @@ egg 1 2 papyrus 999 3 0 algebra " "$data" "" -# Busybox is definitely doing this one wrong just now. FIXME - +test x"$SKIP_KNOWN_BUGS" = x"" && { +# Busybox is definitely doing these wrong. FIXME testing "sort key range with numeric option and global reverse" \ "sort -k2,3n -r input" \ "egg 1 2 papyrus @@ -56,8 +56,6 @@ testing "sort key range with numeric option and global reverse" \ 7 3 42 soup " "$data" "" -# - testing "sort key range with multiple options" "sort -k2,3rn input" \ "7 3 42 soup 999 3 0 algebra @@ -65,6 +63,7 @@ testing "sort key range with multiple options" "sort -k2,3rn input" \ 42 1 3 woot egg 1 2 papyrus " "$data" "" +} testing "sort key range with two -k options" "sort -k 2,2n -k 1,1r input" "\ d 2 |