diff options
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/opkg.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/opkg.py b/meta/lib/oeqa/runtime/cases/opkg.py index 671ee06c73..50de8001c3 100644 --- a/meta/lib/oeqa/runtime/cases/opkg.py +++ b/meta/lib/oeqa/runtime/cases/opkg.py | |||
@@ -17,7 +17,10 @@ class OpkgRepoTest(OpkgTest): | |||
17 | 17 | ||
18 | @classmethod | 18 | @classmethod |
19 | def setUpClass(cls): | 19 | def setUpClass(cls): |
20 | service_repo = os.path.join(cls.tc.td['DEPLOY_DIR_IPK'], 'all') | 20 | allarchfeed = 'all' |
21 | if cls.tc.td["MULTILIB_VARIANTS"]: | ||
22 | allarchfeed = cls.tc.td["TUNE_PKGARCH"] | ||
23 | service_repo = os.path.join(cls.tc.td['DEPLOY_DIR_IPK'], allarchfeed) | ||
21 | cls.repo_server = HTTPService(service_repo, cls.tc.target.server_ip) | 24 | cls.repo_server = HTTPService(service_repo, cls.tc.target.server_ip) |
22 | cls.repo_server.start() | 25 | cls.repo_server.start() |
23 | 26 | ||