diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-05-22 02:22:49 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-06-01 06:24:08 +0200 |
commit | 76f314c75dffd4a55839d50ee23622edad52c168 (patch) | |
tree | 9dc64520c73d45c273cbe23ccb8d481f2955d84e /regress/test-exec.sh | |
parent | upstream: Clean up comment. (diff) | |
download | openssh-76f314c75dffd4a55839d50ee23622edad52c168.tar.xz openssh-76f314c75dffd4a55839d50ee23622edad52c168.zip |
upstream: Add TEST_SSH_FAIL_FATAL variable, to force all failures
to instantly abort the test. Useful in capturing clean logs for individual
failure cases.
OpenBSD-Regress-ID: feba18cf338c2328b9601bd4093cabdd9baa3af1
Diffstat (limited to '')
-rw-r--r-- | regress/test-exec.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh index b6169f157..a314a57b4 100644 --- a/regress/test-exec.sh +++ b/regress/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.62 2018/03/16 09:06:31 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.63 2018/05/22 00:22:49 djm Exp $ # Placed in the Public Domain. #SUDO=sudo @@ -375,7 +375,10 @@ fail () save_debug_log "FAIL: $@" RESULT=1 echo "$@" - + if test "x$TEST_SSH_FAIL_FATAL" != "x" ; then + cleanup + exit $RESULT + fi } fatal () |