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: lucaceresoli/bug-15201-perf-libtraceevent-missing~329 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=38fd2120f0f48512091ddad6205ce19839eaf589;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 --- diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b/meta/lib/oeqa/selftest/cases/glibc.py index a446543a171..4ec4b85d672 100644 --- a/meta/lib/oeqa/selftest/cases/glibc.py +++ b/meta/lib/oeqa/selftest/cases/glibc.py @@ -28,7 +28,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")