aboutsummaryrefslogtreecommitdiff
path: root/testsuite/seq.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-06-13 23:41:57 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-06-13 23:41:57 +0200
commit2441060bebec2d65c9d106335223f37ec6e8ea5b (patch)
tree22c62604f5bbde2defb5a69400fb7d27bf847dc7 /testsuite/seq.tests
parent16635cc2e052897ce7c2d4989acd0b706c3ac3dd (diff)
downloadbusybox-2441060bebec2d65c9d106335223f37ec6e8ea5b.tar.gz
fix or document testsuite failures
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/seq.tests')
-rwxr-xr-xtestsuite/seq.tests3
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/seq.tests b/testsuite/seq.tests
index cea4eefb8..4e43d0ee1 100755
--- a/testsuite/seq.tests
+++ b/testsuite/seq.tests
@@ -29,6 +29,8 @@ testing "seq count up by 2" "seq 4 2 8" "4\n6\n8\n" "" ""
testing "seq count down by 2" "seq 8 -2 4" "8\n6\n4\n" "" ""
testing "seq count wrong way #1" "seq 4 -2 8" "" "" ""
testing "seq count wrong way #2" "seq 8 2 4" "" "" ""
+# Fails: first item is printed as 3, not 3.0
+# note: makes sense to fix "seq 3 .30 4" case as well
testing "seq count by .3" "seq 3 .3 4" "3.0\n3.3\n3.6\n3.9\n" "" ""
testing "seq count by -.9" "seq .7 -.9 -2.2" "0.7\n-0.2\n-1.1\n-2\n" "" ""
testing "seq count by zero" "seq 4 0 8 | head -n 10" "" "" ""
@@ -36,6 +38,7 @@ testing "seq count by zero" "seq 4 0 8 | head -n 10" "" "" ""
testing "seq one argument with padding" "seq -w 003" "001\n002\n003\n" "" ""
testing "seq two arguments with padding" "seq -w 005 7" "005\n006\n007\n" "" ""
testing "seq count down by 3 with padding" "seq -w 8 -3 04" "08\n05\n" "" ""
+# Known to fail
testing "seq count by .3 with padding" "seq -w 03 .3 0004" "003.0\n003.3\n003.6\n003.9\n" "" ""
exit $FAILCOUNT