mirror of
https://github.com/intel/llvm.git
synced 2026-02-02 02:00:03 +08:00
[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.
This commit is contained in:
@@ -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"])
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user