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:28:44 +0100 |
commit | 4a14535cd493cb2bdd46b2a5f2a1cd2b38161f0a (patch) | |
tree | a3ff00024a18df037a17b0ce6f11223f3833b655 /meta/lib/oeqa | |
parent | b2d6f08ff4f03079973eab76a790bf4555e32236 (diff) | |
download | openembedded-core-4a14535cd493cb2bdd46b2a5f2a1cd2b38161f0a.tar.gz openembedded-core-4a14535cd493cb2bdd46b2a5f2a1cd2b38161f0a.tar.bz2 openembedded-core-4a14535cd493cb2bdd46b2a5f2a1cd2b38161f0a.zip |
lib/oeqa/runtime: multilib: fix typo
The check was obviously wrong and it surfaced
with the recent change in behaviour for skipping tests.
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Diffstat (limited to 'meta/lib/oeqa')
-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 * 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") |