From ba14e4d65cddb6057374c71232e17cbc03be974d Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Tue, 5 Jul 2022 13:16:23 +0400 Subject: [PATCH] [LLDB] Disable TestGdbRemoteFork* for Arm/AArch64 Linux This test is causing some trouble with LLDB Arm/AArch64 Linux buildbot. I am disabling is temporarily to make buildbot green. --- lldb/test/API/tools/lldb-server/TestGdbRemoteFork.py | 5 +++++ lldb/test/API/tools/lldb-server/TestGdbRemoteForkNonStop.py | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/lldb/test/API/tools/lldb-server/TestGdbRemoteFork.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteFork.py index 0c169de3f4d0..a67c566d265b 100644 --- a/lldb/test/API/tools/lldb-server/TestGdbRemoteFork.py +++ b/lldb/test/API/tools/lldb-server/TestGdbRemoteFork.py @@ -7,6 +7,11 @@ from fork_testbase import GdbRemoteForkTestBase class TestGdbRemoteFork(GdbRemoteForkTestBase): + def setUp(self): + GdbRemoteForkTestBase.setUp(self) + if self.getPlatform() == "linux" and self.getArchitecture() in ['arm', 'aarch64']: + self.skipTest("Unsupported for Arm/AArch64 Linux") + @add_test_categories(["fork"]) def test_fork_multithreaded(self): _, _, child_pid, _ = self.start_fork_test(["thread:new"]*2 + ["fork"]) diff --git a/lldb/test/API/tools/lldb-server/TestGdbRemoteForkNonStop.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteForkNonStop.py index 764f238a51ee..7ba376485513 100644 --- a/lldb/test/API/tools/lldb-server/TestGdbRemoteForkNonStop.py +++ b/lldb/test/API/tools/lldb-server/TestGdbRemoteForkNonStop.py @@ -5,6 +5,11 @@ from fork_testbase import GdbRemoteForkTestBase class TestGdbRemoteForkNonStop(GdbRemoteForkTestBase): + def setUp(self): + GdbRemoteForkTestBase.setUp(self) + if self.getPlatform() == "linux" and self.getArchitecture() in ['arm', 'aarch64']: + self.skipTest("Unsupported for Arm/AArch64 Linux") + @add_test_categories(["fork"]) def test_vfork_nonstop(self): parent_pid, parent_tid = self.fork_and_detach_test("vfork",