Skip to content

Commit f5a198b

Browse files
[lldb][test] Xfail 3 backtrace related tests on Windows on Arm (#172300)
Since we updated our buildbot setup, these have been failing. Ignore them until we have time to find the real problem, which is something to do with failing to backtrace, or missing debug info when we do.
1 parent a68fde5 commit f5a198b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

lldb/test/API/functionalities/bt-interrupt/TestInterruptBacktrace.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
class TestInterruptingBacktrace(TestBase):
1313
NO_DEBUG_INFO_TESTCASE = True
1414

15+
@expectedFailureAll(oslist=["windows"], archs=["aarch64"])
1516
@skipIf(oslist=["linux"], archs=["arm$"])
1617
def test_backtrace_interrupt(self):
1718
"""Use RequestInterrupt followed by stack operations

lldb/test/API/python_api/hello_world/TestHelloWorld.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def test_with_process_launch_api(self):
6969
# The breakpoint should have a hit count of 1.
7070
self.assertEqual(breakpoint.GetHitCount(), 1, BREAKPOINT_HIT_ONCE)
7171

72+
@expectedFailureAll(oslist=["windows"], archs=["aarch64"])
7273
@skipIfiOSSimulator
7374
def test_with_attach_to_process_with_id_api(self):
7475
"""Create target, spawn a process, and attach to it with process id."""
@@ -99,6 +100,7 @@ def test_with_attach_to_process_with_id_api(self):
99100
stacktraces, exe=False, substrs=["main.c:%d" % self.line2, "(int)argc=2"]
100101
)
101102

103+
@expectedFailureAll(oslist=["windows"], archs=["aarch64"])
102104
@skipIfiOSSimulator
103105
@skipIfAsan # FIXME: Hangs indefinitely.
104106
def test_with_attach_to_process_with_name_api(self):

0 commit comments

Comments
 (0)