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>
This commit is contained in:
Stefan Stanacar 2013-08-26 14:54:21 +03:00 committed by Richard Purdie
parent 355a781662
commit a855180fe6
1 changed files with 1 additions and 1 deletions

View File

@ -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")