summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@wezfurlong.org>2019-10-20 10:33:04 +0100
committerWez Furlong <wez@wezfurlong.org>2019-10-20 11:14:01 +0100
commitb32a6fcdf25bff455755377f3591d7acefd4d6d2 (patch)
tree5668165db501bcdcbc5595cda6262e7fd7de5292
parent0224d356ae09beb0df702c251b14e9cb8382f3e5 (diff)
downloadssh2-rs-b32a6fcdf25bff455755377f3591d7acefd4d6d2.zip
dump server log
-rwxr-xr-xtests/run_integration_tests.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/run_integration_tests.sh b/tests/run_integration_tests.sh
index 5d6fb34..622a625 100755
--- a/tests/run_integration_tests.sh
+++ b/tests/run_integration_tests.sh
@@ -11,6 +11,8 @@ export RUST_SSH2_FIXTURE_PORT=8022
cleanup() {
# Stop the ssh server and local ssh agent
kill $(< $SSHDIR/sshd.pid) $SSH_AGENT_PID || true
+
+ test -f $SSHDIR/sshd.log && cat $SSHDIR/sshd.log
}
trap cleanup EXIT