aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2018-07-27 11:17:36 +0800
committerRobert Yang <liezhi.yang@windriver.com>2018-07-27 16:46:06 +0800
commit85c2f1f3b70d5c6802230f2ef097fac28a544526 (patch)
treeae4ef318a8aa84cf8b75f0d34e06fbbb07167e8f
parent364449251ffe4ff2c11acaa258edcec244c38818 (diff)
downloadopenembedded-core-contrib-rbt/testtools.tar.gz
testsdk.bbclass: check python module testtools and subunitrbt/testtools
The testtools or subunit is not part of python's standard library, so check them before use. Fixed when they are not installed on host: $ bitbake core-image-minimal -ctestsdk Exception: ImportError: No module named 'testtools' Now it can run with a warning: WARNING: core-image-minimal-1.0-r0 do_testsdk: Failed to import testtools or subunit, the testcases will run serially Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-rw-r--r--meta/classes/testsdk.bbclass6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass
index 5df17bfa9e..d3f475d22b 100644
--- a/meta/classes/testsdk.bbclass
+++ b/meta/classes/testsdk.bbclass
@@ -43,6 +43,12 @@ def testsdk_main(d):
d.expand("${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.host.manifest"))
processes = d.getVar("TESTIMAGE_NUMBER_THREADS") or d.getVar("BB_NUMBER_THREADS")
+ if processes:
+ try:
+ import testtools, subunit
+ except ImportError:
+ bb.warn("Failed to import testtools or subunit, the testcases will run serially")
+ processes = None
sdk_dir = d.expand("${WORKDIR}/testimage-sdk/")
bb.utils.remove(sdk_dir, True)