Skip to content

Commit

Permalink
[LLDB] Disable TestGdbRemoteFork* for Arm/AArch64 Linux
Browse files Browse the repository at this point in the history
This test is causing some trouble with LLDB Arm/AArch64 Linux buildbot.
I am disabling is temporarily to make buildbot green.
  • Loading branch information
omjavaid committed Jul 5, 2022
1 parent 1666f09 commit ba14e4d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lldb/test/API/tools/lldb-server/TestGdbRemoteFork.py
Expand Up @@ -7,6 +7,11 @@


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"])
Expand Down
5 changes: 5 additions & 0 deletions lldb/test/API/tools/lldb-server/TestGdbRemoteForkNonStop.py
Expand Up @@ -5,6 +5,11 @@


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",
Expand Down

0 comments on commit ba14e4d

Please sign in to comment.