summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-05-10 09:43:34 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-05-12 22:01:55 +0100
commit234b7ce5146b0e1653e4490c15442dda135a6234 (patch)
tree8ae9fbb8a1abc623edc3ead154b869f5cd5cc547
parent6920f26ee8ac55b9c3c948ec8273be6f002e1d43 (diff)
downloadpoky-234b7ce5146b0e1653e4490c15442dda135a6234.tar.gz
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 <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/meta/buildtools-tarball.bb2
1 files changed, 1 insertions, 1 deletions
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() {
135 testsdk = oeqa.sdk.testsdk.TestSDK() 135 testsdk = oeqa.sdk.testsdk.TestSDK()
136 136
137 cases_path = os.path.join(os.path.abspath(os.path.dirname(oeqa.sdk.testsdk.__file__)), d.getVar("TESTSDK_CASES")) 137 cases_path = os.path.join(os.path.abspath(os.path.dirname(oeqa.sdk.testsdk.__file__)), d.getVar("TESTSDK_CASES"))
138 testsdk.context_executor_class.default_cases = cases_path 138 testsdk.context_executor_class.default_cases = [cases_path,]
139 139
140 testsdk.run(d) 140 testsdk.run(d)
141} 141}