From: Mathieu Dubois-Briand Date: Sun, 28 Sep 2025 12:08:08 +0000 (+0200) Subject: fixup! oeqa: ssh: Add log line on SSH failure X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Fmathieu%2Fmaster-next-test;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git fixup! oeqa: ssh: Add log line on SSH failure --- diff --git a/meta/lib/oeqa/core/target/ssh.py b/meta/lib/oeqa/core/target/ssh.py index fb9a530c4f..af7457c07d 100644 --- a/meta/lib/oeqa/core/target/ssh.py +++ b/meta/lib/oeqa/core/target/ssh.py @@ -71,8 +71,8 @@ class OESSHTarget(OETarget): "status %d:\n%s" % (command, status, output)) elif status == 255: raise AssertionError("ssh exited with status '255' for command " - "'%s': this is likely an SSH failure" - % (command,)) + "'%s': this is likely an SSH failure\n%s" + % (command, output)) return (status, output)