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>
This commit is contained in:
Richard Purdie
2017-03-01 10:59:13 +00:00
parent f73172e64e
commit 78195a23b0

View File

@@ -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