summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/opkg.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-08 19:55:17 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-06 16:38:31 +0000
commitaaab0dfa837e04289fcb84bf0ee9cbad76d98f79 (patch)
tree7032743c123a4afd367cbf19e9dda22764afbcef /meta/lib/oeqa/runtime/cases/opkg.py
parent0dd564297759ddc06ad058086f31abe1bdfa7753 (diff)
downloadpoky-aaab0dfa837e04289fcb84bf0ee9cbad76d98f79.tar.gz
oeqa/runtime/cases: Improve test dependency information
Add the OEHasPackage decorator to a variety of tests so they determine automatically if they should run against a given image. To ensure tests can do this we need to move target operations such as scp commands into the tests and out of the class startup/teardown. (From OE-Core rev: 60d6580b85714b8960a964e775d76a7f937f5e5a) (From OE-Core rev: 601f87016c6772a4ec8410bccb195989bcf05b55) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/opkg.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/opkg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/opkg.py b/meta/lib/oeqa/runtime/cases/opkg.py
index 29e990269b..693f5d68c9 100644
--- a/meta/lib/oeqa/runtime/cases/opkg.py
+++ b/meta/lib/oeqa/runtime/cases/opkg.py
@@ -16,7 +16,7 @@ class OpkgTest(OERuntimeTestCase):
16class OpkgRepoTest(OpkgTest): 16class OpkgRepoTest(OpkgTest):
17 17
18 @classmethod 18 @classmethod
19 def setUpClass(cls): 19 def setUp(cls):
20 allarchfeed = 'all' 20 allarchfeed = 'all'
21 if cls.tc.td["MULTILIB_VARIANTS"]: 21 if cls.tc.td["MULTILIB_VARIANTS"]:
22 allarchfeed = cls.tc.td["TUNE_PKGARCH"] 22 allarchfeed = cls.tc.td["TUNE_PKGARCH"]
@@ -25,7 +25,7 @@ class OpkgRepoTest(OpkgTest):
25 cls.repo_server.start() 25 cls.repo_server.start()
26 26
27 @classmethod 27 @classmethod
28 def tearDownClass(cls): 28 def tearDown(cls):
29 cls.repo_server.stop() 29 cls.repo_server.stop()
30 30
31 def setup_source_config_for_package_install(self): 31 def setup_source_config_for_package_install(self):