diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/ssh.py')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/ssh.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ssh.py b/meta/lib/oeqa/runtime/cases/ssh.py index eca167969a..0b1ea7bcc2 100644 --- a/meta/lib/oeqa/runtime/cases/ssh.py +++ b/meta/lib/oeqa/runtime/cases/ssh.py | |||
@@ -1,11 +1,13 @@ | |||
1 | from oeqa.runtime.case import OERuntimeTestCase | 1 | from oeqa.runtime.case import OERuntimeTestCase |
2 | from oeqa.core.decorator.depends import OETestDepends | 2 | from oeqa.core.decorator.depends import OETestDepends |
3 | from oeqa.core.decorator.oeid import OETestID | 3 | from oeqa.core.decorator.oeid import OETestID |
4 | from oeqa.runtime.decorator.package import OEHasPackage | ||
4 | 5 | ||
5 | class SSHTest(OERuntimeTestCase): | 6 | class SSHTest(OERuntimeTestCase): |
6 | 7 | ||
7 | @OETestID(224) | 8 | @OETestID(224) |
8 | @OETestDepends(['ping.PingTest.test_ping']) | 9 | @OETestDepends(['ping.PingTest.test_ping']) |
10 | @OEHasPackage(['dropbear', 'openssh-sshd']) | ||
9 | def test_ssh(self): | 11 | def test_ssh(self): |
10 | (status, output) = self.target.run('uname -a') | 12 | (status, output) = self.target.run('uname -a') |
11 | self.assertEqual(status, 0, msg='SSH Test failed: %s' % output) | 13 | self.assertEqual(status, 0, msg='SSH Test failed: %s' % output) |