diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-01 10:59:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-01 23:27:11 +0000 |
commit | 78195a23b09c1d5cee8e42d86463c9ee64b95e35 (patch) | |
tree | ff33ab0fb1a643e4f7dcc72d6fb991112873bb4d /meta | |
parent | f73172e64e1360ff27b206a7138f1fe894ef7533 (diff) | |
download | poky-78195a23b09c1d5cee8e42d86463c9ee64b95e35.tar.gz |
oeqa/sdkext: Ensure we run a deterministic set of tests
The directory list of sdk tests to run can vary so this code effectively selects
a random set of SDK tests to run in the eSDK. We want to attemp all the SDK tests
so remove the element selection.
(From OE-Core rev: 11365d869c03cb0e476ea43e75ce27090a33dfa7)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/sdkext/context.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/sdkext/context.py b/meta/lib/oeqa/sdkext/context.py index 8dbcd807b4..bee8c39b0a 100644 --- a/meta/lib/oeqa/sdkext/context.py +++ b/meta/lib/oeqa/sdkext/context.py | |||
@@ -14,8 +14,8 @@ class OESDKExtTestContextExecutor(OESDKTestContextExecutor): | |||
14 | help = 'esdk test component' | 14 | help = 'esdk test component' |
15 | description = 'executes esdk tests' | 15 | description = 'executes esdk tests' |
16 | 16 | ||
17 | default_cases = [OESDKTestContextExecutor.default_cases[0], | 17 | default_cases = OESDKTestContextExecutor.default_cases + \ |
18 | os.path.join(os.path.abspath(os.path.dirname(__file__)), 'cases')] | 18 | [os.path.join(os.path.abspath(os.path.dirname(__file__)), 'cases')] |
19 | default_test_data = None | 19 | default_test_data = None |
20 | 20 | ||
21 | _executor_class = OESDKExtTestContextExecutor | 21 | _executor_class = OESDKExtTestContextExecutor |