diff options
author | Rob Landley <rob@landley.net> | 2016-09-04 19:13:31 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-09-04 19:13:31 -0500 |
commit | 8361fbd8ea9c6f29602982d31f67351f42f736b0 (patch) | |
tree | 790abcd281a9e6da68d47a459c2fab4daaa25eb8 /scripts | |
parent | 8cc325d55ca2984dbf2a29dbc48ed483de979740 (diff) | |
download | toybox-8361fbd8ea9c6f29602982d31f67351f42f736b0.tar.gz |
make test_cmp caused the make invocation to exit with an error because the
last test exited with nonzero status and the script preserved it. In the
current context, that's counterproductive.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/runtest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runtest.sh b/scripts/runtest.sh index 13b82f14..6e94d945 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh @@ -109,7 +109,7 @@ testing() [ -n "$DEBUG" ] && set +x - return $RETVAL + return 0 } # Recursively grab an executable and all the libraries needed to run it. |