Signed-off-by: Josef 'Jeff' Sipek <[email protected]>
On Tue, May 13, 2014 at 10:30:46PM +0200, Per Cederqvist wrote:
> There were two problems with the old code:
>
> - Since "set -e" is in effect (that is set in scaffold) the run-test
> script exited immediately if a t-*.sh script failed. This is not
> nice, as we want the error report that test_failed prints.
>
> - The code ran "cd -" between running the t-*.sh script and checking
> the exit status, so the exit status was lost. (Actually, the exit
> status was saved in $ERR, but nothing ever looked at $ERR.)
>
> Signed-off-by: Per Cederqvist <[email protected]>
> ---
> regression/run-tests | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/regression/run-tests b/regression/run-tests
> index a10e796..8e0af9f 100755
> --- a/regression/run-tests
> +++ b/regression/run-tests
> @@ -55,11 +55,15 @@ function run_test
>
> # run the test
> cd "$REPODIR" > /dev/null
> - "$REG_DIR/t-$1.sh" 2>&1 > "$LOGFILE"
> - ERR=$?
> + if "$REG_DIR/t-$1.sh" 2>&1 > "$LOGFILE"; then
> + ERR=false
> + else
> + ERR=true
> + fi
> +
> cd - > /dev/null
>
> - [ $? -ne 0 ] && test_failed
> + $ERR && test_failed
> diff -u "t-$1.out" "$LOGFILE" || test_failed
>
> echo "done."
> --
> 1.8.3.1
>
--
Reality is merely an illusion, albeit a very persistent one.
- Albert Einstein
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html