From 78195a23b09c1d5cee8e42d86463c9ee64b95e35 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 1 Mar 2017 10:59:13 +0000 Subject: 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 --- meta/lib/oeqa/sdkext/context.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta') 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 -- cgit 1.2.3-korg