]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
fixup! oeqa: ssh: Add log line on SSH failure mathieu/master-next-test
authorMathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Sun, 28 Sep 2025 12:08:08 +0000 (14:08 +0200)
committerMathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Sun, 28 Sep 2025 12:08:08 +0000 (14:08 +0200)
meta/lib/oeqa/core/target/ssh.py

index fb9a530c4fa6d140b07be0794b1ed02ea62c4b48..af7457c07d5bae71645288289898d51399a52b9b 100644 (file)
@@ -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)