aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runtest
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-06-15 09:16:27 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-06-15 09:16:27 +0200
commitcd3dd42c28832da92ee0d4d3afe7cf722e38f80c (patch)
tree6c97c10fb539f2d8cb8d3f34eff73ac6bcecf70b /testsuite/runtest
parent82a6fb3ea6b49bcf1ef21ab589179ee2d6ffdc09 (diff)
downloadbusybox-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/runtest')
-rwxr-xr-xtestsuite/runtest10
1 files changed, 6 insertions, 4 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.
123LINKSDIR="$bindir/runtest-tempdir-links" 125LINKSDIR="$bindir/runtest-tempdir-links"
124rm -rf "$LINKSDIR" 2>/dev/null 126#rm -rf "$LINKSDIR" 2>/dev/null
125mkdir "$LINKSDIR" 127mkdir "$LINKSDIR" 2>/dev/null
126for i in $implemented; do 128for i in $implemented; do
127 ln -s "$bindir/busybox" "$LINKSDIR/$i" 129 ln -s "$bindir/busybox" "$LINKSDIR/$i" 2>/dev/null
128done 130done
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)"