summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/scp.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/scp.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/scp.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/scp.py b/meta/lib/oeqa/runtime/cases/scp.py
index f488a6175b..8f895da95a 100644
--- a/meta/lib/oeqa/runtime/cases/scp.py
+++ b/meta/lib/oeqa/runtime/cases/scp.py
@@ -4,6 +4,7 @@ from tempfile import mkstemp
4from oeqa.runtime.case import OERuntimeTestCase 4from oeqa.runtime.case import OERuntimeTestCase
5from oeqa.core.decorator.depends import OETestDepends 5from oeqa.core.decorator.depends import OETestDepends
6from oeqa.core.decorator.oeid import OETestID 6from oeqa.core.decorator.oeid import OETestID
7from oeqa.runtime.decorator.package import OEHasPackage
7 8
8class ScpTest(OERuntimeTestCase): 9class ScpTest(OERuntimeTestCase):
9 10
@@ -20,6 +21,7 @@ class ScpTest(OERuntimeTestCase):
20 21
21 @OETestID(220) 22 @OETestID(220)
22 @OETestDepends(['ssh.SSHTest.test_ssh']) 23 @OETestDepends(['ssh.SSHTest.test_ssh'])
24 @OEHasPackage(['openssh-scp', 'dropbear'])
23 def test_scp_file(self): 25 def test_scp_file(self):
24 dst = '/tmp/test_scp_file' 26 dst = '/tmp/test_scp_file'
25 27