diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-05-22 00:22:49 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-06-01 14:24:08 +1000 |
commit | 76f314c75dffd4a55839d50ee23622edad52c168 (patch) | |
tree | 9dc64520c73d45c273cbe23ccb8d481f2955d84e | |
parent | 065c8c055df8d83ae7c92e5e524a579d87668aab (diff) |
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
-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 @@ | |||
1 | # $OpenBSD: test-exec.sh,v 1.62 2018/03/16 09:06:31 dtucker Exp $ | 1 | # $OpenBSD: test-exec.sh,v 1.63 2018/05/22 00:22:49 djm Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | #SUDO=sudo | 4 | #SUDO=sudo |
@@ -375,7 +375,10 @@ fail () | |||
375 | save_debug_log "FAIL: $@" | 375 | save_debug_log "FAIL: $@" |
376 | RESULT=1 | 376 | RESULT=1 |
377 | echo "$@" | 377 | echo "$@" |
378 | 378 | if test "x$TEST_SSH_FAIL_FATAL" != "x" ; then | |
379 | cleanup | ||
380 | exit $RESULT | ||
381 | fi | ||
379 | } | 382 | } |
380 | 383 | ||
381 | fatal () | 384 | fatal () |