diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-05-26 15:37:43 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-02 13:36:14 +0100 |
commit | adc434c0636b7dea2ef70c8d2c8e61cdb5c703b1 (patch) | |
tree | 85f864b0176b1556473f80174523f063d5dafc37 /meta/lib | |
parent | a4eef558c9933eb32413b61ff80a11b999951b40 (diff) | |
download | poky-adc434c0636b7dea2ef70c8d2c8e61cdb5c703b1.tar.gz |
oeqa/sdk: Enable usage of OEQA thread mode
oeqa/sdk/context.py - Use OETestContextThreaded.
classes/testsdk.bbclass - Enable bb event thread mode to avoid
corrupt the PIPE when multiple threads writes.
[YOCTO #11450]
(From OE-Core rev: 598c6579932c2ca1dbdb022c8bec8af2e6c21e6b)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/sdk/context.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/lib/oeqa/sdk/context.py b/meta/lib/oeqa/sdk/context.py index 82e4c19bfc..b3d7c75183 100644 --- a/meta/lib/oeqa/sdk/context.py +++ b/meta/lib/oeqa/sdk/context.py | |||
@@ -6,9 +6,10 @@ import sys | |||
6 | import glob | 6 | import glob |
7 | import re | 7 | import re |
8 | 8 | ||
9 | from oeqa.core.context import OETestContext, OETestContextExecutor | 9 | from oeqa.core.context import OETestContextExecutor |
10 | from oeqa.core.threaded import OETestContextThreaded | ||
10 | 11 | ||
11 | class OESDKTestContext(OETestContext): | 12 | class OESDKTestContext(OETestContextThreaded): |
12 | sdk_files_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "files") | 13 | sdk_files_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "files") |
13 | 14 | ||
14 | def __init__(self, td=None, logger=None, sdk_dir=None, sdk_env=None, | 15 | def __init__(self, td=None, logger=None, sdk_dir=None, sdk_env=None, |