[oe-commits] Stefan Stanacar : lib/oeqa/runtime: multilib: fix typo

git at git.openembedded.org git at git.openembedded.org
Mon Aug 26 15:18:25 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 4a14535cd493cb2bdd46b2a5f2a1cd2b38161f0a
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=4a14535cd493cb2bdd46b2a5f2a1cd2b38161f0a

Author: Stefan Stanacar <stefanx.stanacar at intel.com>
Date:   Mon Aug 26 14:54:21 2013 +0300

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 at intel.com>

---

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



More information about the Openembedded-commits mailing list