diff mbox series

[1/4] oeqa/selftest/glibc: remove obsolete parallel make assignment

Message ID 20260805160320.41908-1-ross.burton@arm.com
State New
Headers show
Series [1/4] oeqa/selftest/glibc: remove obsolete parallel make assignment | expand

Commit Message

Ross Burton Aug. 5, 2026, 4:03 p.m. UTC
glibc doesn't use EGLIBCPARALLELISM so this didn't do anything.

The glibc check target serialises timing-sensitive tests (nptl and rt)
so this wouldn't have done anything meaningful anyway.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/lib/oeqa/selftest/cases/glibc.py | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b/meta/lib/oeqa/selftest/cases/glibc.py
index a65afb1367e..b8efa22fdac 100644
--- a/meta/lib/oeqa/selftest/cases/glibc.py
+++ b/meta/lib/oeqa/selftest/cases/glibc.py
@@ -58,8 +58,6 @@  class GlibcSelfTestBase(OESelftestTestCase, OEPTestResultTestCase):
             features.append('TOOLCHAIN_TEST_HOST = "{0}"'.format(ssh))
             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""')
         self.write_config("\n".join(features))
 
         start_time = time.time()