From 07fc9ad254055ca87302e1c0c74d50775b8550a6 Mon Sep 17 00:00:00 2001 From: Anuj Mittal Date: Fri, 21 Jul 2023 13:30:13 +0800 Subject: [PATCH] selftest/cases/glibc.py: fix the override syntax Fix the override so we actually pass the correct value to glibc. (From OE-Core rev: 8ad6000c814631e1147fddd5d2462b39ea44b99e) Signed-off-by: Anuj Mittal Signed-off-by: Richard Purdie (cherry picked from commit 38fd2120f0f48512091ddad6205ce19839eaf589) Signed-off-by: Steve Sakoman --- meta/lib/oeqa/selftest/cases/glibc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b/meta/lib/oeqa/selftest/cases/glibc.py index a446543a17..4ec4b85d67 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")