summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/ssh.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/ssh.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/ssh.py2
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 @@
1from oeqa.runtime.case import OERuntimeTestCase 1from oeqa.runtime.case import OERuntimeTestCase
2from oeqa.core.decorator.depends import OETestDepends 2from oeqa.core.decorator.depends import OETestDepends
3from oeqa.core.decorator.oeid import OETestID 3from oeqa.core.decorator.oeid import OETestID
4from oeqa.runtime.decorator.package import OEHasPackage
4 5
5class SSHTest(OERuntimeTestCase): 6class 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)