[gnome-continuous-yocto/gnomeostree-3.28-rocko: 4880/8267] oeqa/sdkext: Ensure we run a deterministic set of tests



commit 78195a23b09c1d5cee8e42d86463c9ee64b95e35
Author: Richard Purdie <richard purdie linuxfoundation org>
Date:   Wed Mar 1 10:59:13 2017 +0000

    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>

 meta/lib/oeqa/sdkext/context.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/meta/lib/oeqa/sdkext/context.py b/meta/lib/oeqa/sdkext/context.py
index 8dbcd80..bee8c39 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


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]