summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2021-10-19 13:30:58 +0800
committerMatt Johnston <matt@ucc.asn.au>2021-10-19 13:30:58 +0800
commit9e7bcc1de38268981cad675dc343b11e0d721013 (patch)
tree7c961d32e73b8867e37f54d8ddbfdcbf907037af /test
parent305e03ee3e3828ab6f14cae0050c391f472308e2 (diff)
downloaddropbear-9e7bcc1de38268981cad675dc343b11e0d721013.tar.gz
Debug pytest password auth failing
Diffstat (limited to 'test')
-rw-r--r--test/test_dropbear.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_dropbear.py b/test/test_dropbear.py
index 5fe0d6a..05ea953 100644
--- a/test/test_dropbear.py
+++ b/test/test_dropbear.py
@@ -35,6 +35,10 @@ def dropbear(request):
# Ready
yield p
p.terminate()
+ print("Terminated dropbear. Flushing output:")
+ for l in p.stderr:
+ print(l.rstrip())
+ print("Done")
def dbclient(request, *args, **kwargs):
opt = request.config.option