From 234b7ce5146b0e1653e4490c15442dda135a6234 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Sat, 10 May 2025 09:43:34 +0100 Subject: buildtools-tarball: fix default_cases assignment This is meant to be a list of strings not a single string. For example, this is overwriting the default in OESDKTestContextExecutor which is: default_cases = [os.path.join(os.path.abspath(os.path.dirname(__file__)), 'cases')] (From OE-Core rev: 867e0a9c571b7bc9a37e6d893f7d75e03fa218a5) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/recipes-core/meta/buildtools-tarball.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/meta/buildtools-tarball.bb b/meta/recipes-core/meta/buildtools-tarball.bb index 8e78169e23..6fa6d93a3d 100644 --- a/meta/recipes-core/meta/buildtools-tarball.bb +++ b/meta/recipes-core/meta/buildtools-tarball.bb @@ -135,7 +135,7 @@ python do_testsdk() { testsdk = oeqa.sdk.testsdk.TestSDK() cases_path = os.path.join(os.path.abspath(os.path.dirname(oeqa.sdk.testsdk.__file__)), d.getVar("TESTSDK_CASES")) - testsdk.context_executor_class.default_cases = cases_path + testsdk.context_executor_class.default_cases = [cases_path,] testsdk.run(d) } -- cgit v1.2.3-54-g00ecf