mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
6920f26ee8
commit
234b7ce514
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user