diff options
Diffstat (limited to 'testsuite/runtest')
-rwxr-xr-x | testsuite/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/runtest b/testsuite/runtest index 91b794317..6a0dc9d3e 100755 --- a/testsuite/runtest +++ b/testsuite/runtest @@ -97,8 +97,8 @@ for applet in $applets; do status=1 fi fi - - if [ -f "$applet".tests ] + applet=`echo "$applet" | sed -n 's/\.tests$//p'` + if [ ${#applet} != 0 ] then rm -f links/"$applet" ln -s ../../busybox links/"$applet" |