diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-11 20:05:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-11 23:06:35 +0100 |
commit | aa2b645bf20fb17bfba7fff1c989173396e4f753 (patch) | |
tree | 98137fe7985fbbb5e869cf23ed47ee5a5932d4e8 /meta/lib/oeqa | |
parent | 64ca57fe52faf7d93fc59d7a47c4e3e5379372bb (diff) | |
download | poky-aa2b645bf20fb17bfba7fff1c989173396e4f753.tar.gz |
oeqa/runtime/opkg: Ensure the test works on multilib
After allarch was disabled in multilib, this test broke. Fix the test to account
for that change.
(From OE-Core rev: 6f692d86c2c6742c67aba93fa24b930af02d8e85)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 | ||