]> code.ossystems Code Review - openembedded-core.git/commitdiff
lib/oeqa/runtime: multilib: fix typo
authorStefan Stanacar <stefanx.stanacar@intel.com>
Mon, 26 Aug 2013 11:54:21 +0000 (14:54 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 26 Aug 2013 15:28:44 +0000 (16:28 +0100)
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>
meta/lib/oeqa/runtime/multilib.py

index 2d952aabdd449d5095cb6ddfb50260034ee064f9..13a3b54b184683d8e60b5328152c7dc4d7d837c9 100644 (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")