[oe-commits] [openembedded-core] branch master updated: targetloader.py: drop test for ClassType

git at git.openembedded.org git at git.openembedded.org
Mon Dec 12 15:17:39 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

The following commit(s) were added to refs/heads/master by this push:
       new  d62f18c   targetloader.py: drop test for ClassType
d62f18c is described below

commit d62f18c39bc0ed3b0f5ac8465b393c15f2143ecf
Author: Juro Bystricky <juro.bystricky at intel.com>
AuthorDate: Sat Dec 10 09:21:45 2016 -0800

    targetloader.py: drop test for ClassType
    
    ClassType was removed from python3.
    The code testing for ClassType kept throwing AttributeError exceptions:
    
        module 'types' has no attribute 'ClassType'
    
    The exceptions prevented loading of any dynamically resolved target
    controllers.
    
    Signed-off-by: Juro Bystricky <juro.bystricky at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/controllers/testtargetloader.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/meta/lib/oeqa/controllers/testtargetloader.py b/meta/lib/oeqa/controllers/testtargetloader.py
index a1b7b1d..b51d04b 100644
--- a/meta/lib/oeqa/controllers/testtargetloader.py
+++ b/meta/lib/oeqa/controllers/testtargetloader.py
@@ -61,8 +61,6 @@ class TestTargetLoader:
             obj = getattr(module, target)
             if obj: 
                 from oeqa.targetcontrol import BaseTarget
-                if (not isinstance(obj, (type, types.ClassType))):
-                    bb.warn("Target {0} found, but not of type Class".format(target))
                 if( not issubclass(obj, BaseTarget)):
                     bb.warn("Target {0} found, but subclass is not BaseTarget".format(target))
         except:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list