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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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