diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-15 09:16:27 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-15 09:16:27 +0200 |
commit | cd3dd42c28832da92ee0d4d3afe7cf722e38f80c (patch) | |
tree | 6c97c10fb539f2d8cb8d3f34eff73ac6bcecf70b /testsuite | |
parent | 82a6fb3ea6b49bcf1ef21ab589179ee2d6ffdc09 (diff) | |
download | busybox-w32-cd3dd42c28832da92ee0d4d3afe7cf722e38f80c.tar.gz busybox-w32-cd3dd42c28832da92ee0d4d3afe7cf722e38f80c.tar.bz2 busybox-w32-cd3dd42c28832da92ee0d4d3afe7cf722e38f80c.zip |
seq: fix testsuite failures
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/runtest | 10 | ||||
-rwxr-xr-x | testsuite/seq.tests | 14 |
2 files changed, 14 insertions, 10 deletions
diff --git a/testsuite/runtest b/testsuite/runtest index cade871a2..2d60591fb 100755 --- a/testsuite/runtest +++ b/testsuite/runtest | |||
@@ -120,11 +120,13 @@ fi | |||
120 | 120 | ||
121 | # Populate a directory with links to all busybox applets | 121 | # Populate a directory with links to all busybox applets |
122 | 122 | ||
123 | # Note: if $LINKSDIR/applet exists, we do not overwrite it. | ||
124 | # Useful if one wants to run tests against a standard utility, not an applet. | ||
123 | LINKSDIR="$bindir/runtest-tempdir-links" | 125 | LINKSDIR="$bindir/runtest-tempdir-links" |
124 | rm -rf "$LINKSDIR" 2>/dev/null | 126 | #rm -rf "$LINKSDIR" 2>/dev/null |
125 | mkdir "$LINKSDIR" | 127 | mkdir "$LINKSDIR" 2>/dev/null |
126 | for i in $implemented; do | 128 | for i in $implemented; do |
127 | ln -s "$bindir/busybox" "$LINKSDIR/$i" | 129 | ln -s "$bindir/busybox" "$LINKSDIR/$i" 2>/dev/null |
128 | done | 130 | done |
129 | 131 | ||
130 | # Set up option flags so tests can be selective. | 132 | # Set up option flags so tests can be selective. |
@@ -142,7 +144,7 @@ for applet in $applets; do | |||
142 | 144 | ||
143 | # Is this a new-style test? | 145 | # Is this a new-style test? |
144 | if [ -f "$applet.tests" ]; then | 146 | if [ -f "$applet.tests" ]; then |
145 | if [ ! -h "$LINKSDIR/$applet" ]; then | 147 | if [ ! -e "$LINKSDIR/$applet" ]; then |
146 | # (avoiding bash'ism "${applet:0:4}") | 148 | # (avoiding bash'ism "${applet:0:4}") |
147 | if ! echo "$applet" | grep "^all_" >/dev/null; then | 149 | if ! echo "$applet" | grep "^all_" >/dev/null; then |
148 | echo "SKIPPED: $applet (not built)" | 150 | echo "SKIPPED: $applet (not built)" |
diff --git a/testsuite/seq.tests b/testsuite/seq.tests index 4e43d0ee1..817e1a724 100755 --- a/testsuite/seq.tests +++ b/testsuite/seq.tests | |||
@@ -29,16 +29,18 @@ testing "seq count up by 2" "seq 4 2 8" "4\n6\n8\n" "" "" | |||
29 | testing "seq count down by 2" "seq 8 -2 4" "8\n6\n4\n" "" "" | 29 | testing "seq count down by 2" "seq 8 -2 4" "8\n6\n4\n" "" "" |
30 | testing "seq count wrong way #1" "seq 4 -2 8" "" "" "" | 30 | testing "seq count wrong way #1" "seq 4 -2 8" "" "" "" |
31 | testing "seq count wrong way #2" "seq 8 2 4" "" "" "" | 31 | testing "seq count wrong way #2" "seq 8 2 4" "" "" "" |
32 | # Fails: first item is printed as 3, not 3.0 | ||
33 | # note: makes sense to fix "seq 3 .30 4" case as well | ||
34 | testing "seq count by .3" "seq 3 .3 4" "3.0\n3.3\n3.6\n3.9\n" "" "" | 32 | testing "seq count by .3" "seq 3 .3 4" "3.0\n3.3\n3.6\n3.9\n" "" "" |
35 | testing "seq count by -.9" "seq .7 -.9 -2.2" "0.7\n-0.2\n-1.1\n-2\n" "" "" | 33 | testing "seq count by .30" "seq 3 .30 4" "3.00\n3.30\n3.60\n3.90\n" "" "" |
36 | testing "seq count by zero" "seq 4 0 8 | head -n 10" "" "" "" | 34 | testing "seq count by .30 to 4.000" "seq 3 .30 4.000" "3.00\n3.30\n3.60\n3.90\n" "" "" |
35 | testing "seq count by -.9" "seq .7 -.9 -2.2" "0.7\n-0.2\n-1.1\n-2.0\n" "" "" | ||
36 | testing "seq count by zero" "seq 4 0 8 | head -n 10" "4\n4\n4\n4\n4\n4\n4\n4\n4\n4\n" "" "" | ||
37 | 37 | ||
38 | testing "seq one argument with padding" "seq -w 003" "001\n002\n003\n" "" "" | 38 | testing "seq one argument with padding" "seq -w 003" "001\n002\n003\n" "" "" |
39 | testing "seq two arguments with padding" "seq -w 005 7" "005\n006\n007\n" "" "" | 39 | testing "seq two arguments with padding" "seq -w 005 7" "005\n006\n007\n" "" "" |
40 | testing "seq count down by 3 with padding" "seq -w 8 -3 04" "08\n05\n" "" "" | 40 | testing "seq count down by 3 with padding" "seq -w 8 -3 04" "08\n05\n" "" "" |
41 | # Known to fail | 41 | # Looks like a bug in coreutils 6.10: it uses width one less than needed |
42 | testing "seq count by .3 with padding" "seq -w 03 .3 0004" "003.0\n003.3\n003.6\n003.9\n" "" "" | 42 | # These tests contain the expected "fixed" output |
43 | testing "seq count by .3 with padding 1" "seq -w 09 .3 11" "09.0\n09.3\n09.6\n09.9\n10.2\n10.5\n10.8\n" "" "" | ||
44 | testing "seq count by .3 with padding 2" "seq -w 03 .3 0004" "0003.0\n0003.3\n0003.6\n0003.9\n" "" "" | ||
43 | 45 | ||
44 | exit $FAILCOUNT | 46 | exit $FAILCOUNT |