From: dtucker Date: Tue, 4 Jan 2022 08:38:53 +0000 (+0000) Subject: Log command invocation in debugging log to aid in manually reproducing X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=3c80d5b5966b57d465e37eb3deb0b75ee451e68c;p=openbsd Log command invocation in debugging log to aid in manually reproducing failing commands. --- diff --git a/regress/usr.bin/ssh/sshd-log-wrapper.sh b/regress/usr.bin/ssh/sshd-log-wrapper.sh index 29dc44aa0b5..4b3c9113799 100644 --- a/regress/usr.bin/ssh/sshd-log-wrapper.sh +++ b/regress/usr.bin/ssh/sshd-log-wrapper.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: sshd-log-wrapper.sh,v 1.4 2016/11/25 02:56:49 dtucker Exp $ +# $OpenBSD: sshd-log-wrapper.sh,v 1.5 2022/01/04 08:38:53 dtucker Exp $ # Placed in the Public Domain. # # simple wrapper for sshd proxy mode to catch stderr output @@ -8,4 +8,5 @@ log=$1 shift +echo "Executing: $@" >>$log exec "$@" -E$log diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh index bf298fb51ec..34a7327b815 100644 --- a/regress/usr.bin/ssh/test-exec.sh +++ b/regress/usr.bin/ssh/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.87 2021/09/01 00:50:27 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.88 2022/01/04 08:38:53 dtucker Exp $ # Placed in the Public Domain. #SUDO=sudo @@ -146,6 +146,7 @@ fi SSHLOGWRAP=$OBJ/ssh-log-wrapper.sh cat >$SSHLOGWRAP <>${TEST_SSH_LOGFILE} for i in "\$@";do shift;case "\$i" in -q):;; *) set -- "\$@" "\$i";;esac;done exec ${SSH} -E${TEST_SSH_LOGFILE} "\$@" EOD