From 4a14535cd493cb2bdd46b2a5f2a1cd2b38161f0a Mon Sep 17 00:00:00 2001 From: Stefan Stanacar Date: Mon, 26 Aug 2013 14:54:21 +0300 Subject: 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 --- meta/lib/oeqa/runtime/multilib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') 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") -- cgit 1.2.3-korg