diff options
author | Matt Kraai <kraai@debian.org> | 2002-03-27 17:33:31 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2002-03-27 17:33:31 +0000 |
commit | 35d60421b4f61de9f5ed39c3057555e6f64d75a7 (patch) | |
tree | ad554d952f655865164e931e9648826a07882e91 | |
parent | 9cdb0601eb53ffdb3fb6b94bb1336adbc7d59e5c (diff) | |
download | busybox-w32-35d60421b4f61de9f5ed39c3057555e6f64d75a7.tar.gz busybox-w32-35d60421b4f61de9f5ed39c3057555e6f64d75a7.tar.bz2 busybox-w32-35d60421b4f61de9f5ed39c3057555e6f64d75a7.zip |
* testsuite/runtest (run_applet_testcase): Return test case status, not
process ID.
-rwxr-xr-x | testsuite/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/runtest b/testsuite/runtest index 8fb92e696..2cf85f5d8 100755 --- a/testsuite/runtest +++ b/testsuite/runtest | |||
@@ -53,10 +53,10 @@ run_applet_testcase () | |||
53 | 53 | ||
54 | if . ../$testcase >/dev/null 2>&1; then | 54 | if . ../$testcase >/dev/null 2>&1; then |
55 | show_result ${X}PASS $testname | 55 | show_result ${X}PASS $testname |
56 | status=$! | 56 | status=$? |
57 | else | 57 | else |
58 | show_result ${X}FAIL $testname | 58 | show_result ${X}FAIL $testname |
59 | status=$! | 59 | status=$? |
60 | fi | 60 | fi |
61 | 61 | ||
62 | popd >/dev/null | 62 | popd >/dev/null |