From: Anuj Mittal Date: Fri, 21 Jul 2023 05:30:13 +0000 (+0800) Subject: selftest/cases/glibc.py: fix the override syntax X-Git-Tag: 2022-04.13-kirkstone~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60ca407ce3113d8b507aaa0876b28902aab7ed5b;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git selftest/cases/glibc.py: fix the override syntax Fix the override so we actually pass the correct value to glibc. Signed-off-by: Anuj Mittal Signed-off-by: Richard Purdie (cherry picked from commit 38fd2120f0f48512091ddad6205ce19839eaf589) Signed-off-by: Steve Sakoman --- diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b/meta/lib/oeqa/selftest/cases/glibc.py index 6fc98e9cb47..783c2d85412 100644 --- a/meta/lib/oeqa/selftest/cases/glibc.py +++ b/meta/lib/oeqa/selftest/cases/glibc.py @@ -24,7 +24,7 @@ class GlibcSelfTestBase(OESelftestTestCase, OEPTestResultTestCase): features.append('TOOLCHAIN_TEST_HOST_USER = "root"') features.append('TOOLCHAIN_TEST_HOST_PORT = "22"') # force single threaded test execution - features.append('EGLIBCPARALLELISM_task-check:pn-glibc-testsuite = "PARALLELMFLAGS="-j1""') + features.append('EGLIBCPARALLELISM:task-check:pn-glibc-testsuite = "PARALLELMFLAGS="-j1""') self.write_config("\n".join(features)) bitbake("glibc-testsuite -c check")