]> code.ossystems Code Review - openembedded-core.git/commitdiff
get_test_suites: Add sdkext type for load test suites.
authorAníbal Limón <anibal.limon@linux.intel.com>
Thu, 28 Jan 2016 21:40:13 +0000 (15:40 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 10 Feb 2016 15:51:03 +0000 (15:51 +0000)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/oetest.py

index 18b2209656174ca4ef77e53aad3a5a5db73efd7f..6470129180f089a319b55dc7885e681374d9d972 100644 (file)
@@ -271,6 +271,8 @@ def get_test_suites(d, type='runtime'):
 
     if type == "sdk":
         testsuites = (d.getVar("TEST_SUITES_SDK", True) or "auto").split()
+    elif type == "sdkext":
+        testsuites = (d.getVar("TEST_SUITES_SDKEXT", True) or "auto").split()
     else:
         manifests = (d.getVar("TEST_SUITES_MANIFEST", True) or '').split()
         if manifests: