aboutsummaryrefslogtreecommitdiff
path: root/testsuite/seq.tests
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-11-12 12:59:56 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-11-12 12:59:56 +0000
commit2598f761bb526afd8ec0de06071fcd6f1a897cd5 (patch)
tree563c08c1abfbab669dcacf51e76a6e5221fb192d /testsuite/seq.tests
parent1ad4db1d8e47b8835f19ad8fe44475db51cf01f9 (diff)
downloadbusybox-2598f761bb526afd8ec0de06071fcd6f1a897cd5.tar.gz
- add seq -w support (Natanael Copa)
Diffstat (limited to 'testsuite/seq.tests')
-rwxr-xr-xtestsuite/seq.tests7
1 files changed, 6 insertions, 1 deletions
diff --git a/testsuite/seq.tests b/testsuite/seq.tests
index ebb44e7a6..cea4eefb8 100755
--- a/testsuite/seq.tests
+++ b/testsuite/seq.tests
@@ -29,8 +29,13 @@ 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" "" "" ""
-testing "seq count by .3" "seq 3 .3 4" "3\n3.3\n3.6\n3.9\n" "" ""
+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" "" "" ""
+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" "" ""
+testing "seq count by .3 with padding" "seq -w 03 .3 0004" "003.0\n003.3\n003.6\n003.9\n" "" ""
+
exit $FAILCOUNT