mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user