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/lib/oeqa/runtime | |
parent | 355a781662ffcb78a3852f94a231659cafcb1880 (diff) | |
download | ast2050-yocto-poky-a855180fe6f078b0afb0f5741074f8bdb5eb2e66.zip ast2050-yocto-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/lib/oeqa/runtime')
-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 2d952aa..13a3b54 100644 --- a/meta/lib/oeqa/runtime/multilib.py +++ b/meta/lib/oeqa/runtime/multilib.py @@ -4,7 +4,7 @@ from oeqa.utils.decorators import * def setUpModule(): multilibs = oeRuntimeTest.tc.d.getVar("MULTILIBS", True) or "" - if "multlib:lib32" not in multilibs: + if "multilib:lib32" not in multilibs: skipModule("this isn't a multilib:lib32 image") |