Working on a new test harness. Moved the sort tests into it.

This commit is contained in:
Rob Landley
2005-09-02 00:41:53 +00:00
parent babd3fbba6
commit 1689075c99
4 changed files with 143 additions and 1 deletions

View File

@ -97,6 +97,16 @@ for applet in $applets; do
status=1
fi
fi
if [ -f "$applet".tests ]
then
rm -f links/"$applet"
ln -s ../../busybox links/"$applet"
PATH=links:$PATH ./"$applet".tests
if [ $? -ne 0 ]; then status=1; fi
fi
done
exit $status