diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-08-26 14:54:21 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-26 16:29:18 +0100 |
commit | a855180fe6f078b0afb0f5741074f8bdb5eb2e66 (patch) | |
tree | 3947ffc5dbc507c5a230ce02288ab61d5dc1962a /meta | |
parent | 355a781662ffcb78a3852f94a231659cafcb1880 (diff) | |
download | poky-a855180fe6f078b0afb0f5741074f8bdb5eb2e66.tar.gz |
lib/oeqa/runtime: multilib: fix typo
The check was obviously wrong and it surfaced
with the recent change in behaviour for skipping tests.
(From OE-Core rev: 4a14535cd493cb2bdd46b2a5f2a1cd2b38161f0a)
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/multilib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/multilib.py b/meta/lib/oeqa/runtime/multilib.py index 2d952aabdd..13a3b54b18 100644 --- a/meta/lib/oeqa/runtime/multilib.py +++ b/meta/lib/oeqa/runtime/multilib.py | |||
@@ -4,7 +4,7 @@ from oeqa.utils.decorators import * | |||
4 | 4 | ||
5 | def setUpModule(): | 5 | def setUpModule(): |
6 | multilibs = oeRuntimeTest.tc.d.getVar("MULTILIBS", True) or "" | 6 | multilibs = oeRuntimeTest.tc.d.getVar("MULTILIBS", True) or "" |
7 | if "multlib:lib32" not in multilibs: | 7 | if "multilib:lib32" not in multilibs: |
8 | skipModule("this isn't a multilib:lib32 image") | 8 | skipModule("this isn't a multilib:lib32 image") |
9 | 9 | ||
10 | 10 | ||