diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/ssh.py')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/ssh.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ssh.py b/meta/lib/oeqa/runtime/cases/ssh.py index 89d64430e5..b632a29a01 100644 --- a/meta/lib/oeqa/runtime/cases/ssh.py +++ b/meta/lib/oeqa/runtime/cases/ssh.py | |||
@@ -7,7 +7,7 @@ | |||
7 | import time | 7 | import time |
8 | import signal | 8 | import signal |
9 | 9 | ||
10 | from oeqa.runtime.case import OERuntimeTestCase | 10 | from oeqa.runtime.case import OERuntimeTestCase, run_network_serialdebug |
11 | from oeqa.core.decorator.depends import OETestDepends | 11 | from oeqa.core.decorator.depends import OETestDepends |
12 | from oeqa.runtime.decorator.package import OEHasPackage | 12 | from oeqa.runtime.decorator.package import OEHasPackage |
13 | 13 | ||
@@ -32,6 +32,7 @@ class SSHTest(OERuntimeTestCase): | |||
32 | time.sleep(5) | 32 | time.sleep(5) |
33 | continue | 33 | continue |
34 | else: | 34 | else: |
35 | run_network_serialdebug(self.target.runner) | ||
35 | self.fail("uname failed with \"%s\" (exit code %s)" % (output, status)) | 36 | self.fail("uname failed with \"%s\" (exit code %s)" % (output, status)) |
36 | if status != 0: | 37 | if status != 0: |
37 | self.fail("ssh failed with \"%s\" (exit code %s)" % (output, status)) | 38 | self.fail("ssh failed with \"%s\" (exit code %s)" % (output, status)) |