diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2017-02-27 07:45:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-01 15:50:18 +0000 |
commit | d6ff4891376417504018af27e8e729a412feeeea (patch) | |
tree | b44809d52d88d98bf0ac6ae241f7168d19dbe619 /meta/lib | |
parent | 95957e3a5fc72406391441627fb19bc36c655072 (diff) | |
download | openembedded-core-d6ff4891376417504018af27e8e729a412feeeea.tar.gz openembedded-core-d6ff4891376417504018af27e8e729a412feeeea.tar.bz2 openembedded-core-d6ff4891376417504018af27e8e729a412feeeea.zip |
oeqa/core/loader.py: Give meaningful error when failed to load classes
With this we get the class that is actually having the problem,
not just a TypeError with an unknown class causing the error.
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/core/loader.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/core/loader.py b/meta/lib/oeqa/core/loader.py index a38032590d..b9ba9235af 100644 --- a/meta/lib/oeqa/core/loader.py +++ b/meta/lib/oeqa/core/loader.py @@ -171,11 +171,11 @@ class OETestLoader(unittest.TestLoader): """ if issubclass(testCaseClass, unittest.suite.TestSuite): raise TypeError("Test cases should not be derived from TestSuite." \ - " Maybe you meant to derive from TestCase?") + " Maybe you meant to derive %s from TestCase?" \ + % testCaseClass.__name__) if not issubclass(testCaseClass, self.caseClass): - raise TypeError("Test cases need to be derived from %s" % \ - self.caseClass.__name__) - + raise TypeError("Test %s is not derived from %s" % \ + (testCaseClass.__name__, self.caseClass.__name__)) testCaseNames = self.getTestCaseNames(testCaseClass) if not testCaseNames and hasattr(testCaseClass, 'runTest'): |