From 17a68389a5e361e7235f1f4801231d8b01e35e2f Mon Sep 17 00:00:00 2001 From: Mathieu Dubois-Briand Date: Sun, 28 Sep 2025 14:08:08 +0200 Subject: [PATCH] fixup! oeqa: ssh: Add log line on SSH failure --- meta/lib/oeqa/core/target/ssh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.47.3