aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-01 10:59:13 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-01 23:27:11 +0000
commit78195a23b09c1d5cee8e42d86463c9ee64b95e35 (patch)
treeff33ab0fb1a643e4f7dcc72d6fb991112873bb4d
parentf73172e64e1360ff27b206a7138f1fe894ef7533 (diff)
downloadopenembedded-core-contrib-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>
-rw-r--r--meta/lib/oeqa/sdkext/context.py4
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):
help = 'esdk test component'
description = 'executes esdk tests'
- default_cases = [OESDKTestContextExecutor.default_cases[0],
- os.path.join(os.path.abspath(os.path.dirname(__file__)), 'cases')]
+ default_cases = OESDKTestContextExecutor.default_cases + \
+ [os.path.join(os.path.abspath(os.path.dirname(__file__)), 'cases')]
default_test_data = None
_executor_class = OESDKExtTestContextExecutor