diff options
author | Rob Landley <rob@landley.net> | 2005-09-02 00:41:53 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-09-02 00:41:53 +0000 |
commit | 1689075c992a45a4a50f1aaad8aaf1d2983060c8 (patch) | |
tree | 679fa07497ea54120459a76464d3257862537b2e /testsuite/runtest | |
parent | babd3fbba668e04841cbe683ca49097fb871fca8 (diff) | |
download | busybox-w32-1689075c992a45a4a50f1aaad8aaf1d2983060c8.tar.gz busybox-w32-1689075c992a45a4a50f1aaad8aaf1d2983060c8.tar.bz2 busybox-w32-1689075c992a45a4a50f1aaad8aaf1d2983060c8.zip |
Working on a new test harness. Moved the sort tests into it.
Diffstat (limited to 'testsuite/runtest')
-rwxr-xr-x | testsuite/runtest | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/runtest b/testsuite/runtest index 6ba334bce..91b794317 100755 --- a/testsuite/runtest +++ b/testsuite/runtest | |||
@@ -97,6 +97,16 @@ for applet in $applets; do | |||
97 | status=1 | 97 | status=1 |
98 | fi | 98 | fi |
99 | fi | 99 | fi |
100 | |||
101 | if [ -f "$applet".tests ] | ||
102 | then | ||
103 | rm -f links/"$applet" | ||
104 | ln -s ../../busybox links/"$applet" | ||
105 | PATH=links:$PATH ./"$applet".tests | ||
106 | if [ $? -ne 0 ]; then status=1; fi | ||
107 | fi | ||
108 | |||
109 | |||
100 | done | 110 | done |
101 | 111 | ||
102 | exit $status | 112 | exit $status |