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/runtest | |
parent | 82a6fb3ea6b49bcf1ef21ab589179ee2d6ffdc09 (diff) | |
download | busybox-cd3dd42c28832da92ee0d4d3afe7cf722e38f80c.tar.gz |
seq: fix testsuite failures
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/runtest')
-rwxr-xr-x | testsuite/runtest | 10 |
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 # Populate a directory with links to all busybox applets +# Note: if $LINKSDIR/applet exists, we do not overwrite it. +# Useful if one wants to run tests against a standard utility, not an applet. LINKSDIR="$bindir/runtest-tempdir-links" -rm -rf "$LINKSDIR" 2>/dev/null -mkdir "$LINKSDIR" +#rm -rf "$LINKSDIR" 2>/dev/null +mkdir "$LINKSDIR" 2>/dev/null for i in $implemented; do - ln -s "$bindir/busybox" "$LINKSDIR/$i" + ln -s "$bindir/busybox" "$LINKSDIR/$i" 2>/dev/null done # Set up option flags so tests can be selective. @@ -142,7 +144,7 @@ for applet in $applets; do # Is this a new-style test? if [ -f "$applet.tests" ]; then - if [ ! -h "$LINKSDIR/$applet" ]; then + if [ ! -e "$LINKSDIR/$applet" ]; then # (avoiding bash'ism "${applet:0:4}") if ! echo "$applet" | grep "^all_" >/dev/null; then echo "SKIPPED: $applet (not built)" |