aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/hello_world/TestHelloWorld.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/hello_world/TestHelloWorld.py b/lldb/test/API/python_api/hello_world/TestHelloWorld.py
index da540d3e016b..e7b5c04d54fe 100644
--- a/lldb/test/API/python_api/hello_world/TestHelloWorld.py
+++ b/lldb/test/API/python_api/hello_world/TestHelloWorld.py
@@ -69,6 +69,7 @@ class HelloWorldTestCase(TestBase):
# The breakpoint should have a hit count of 1.
self.assertEqual(breakpoint.GetHitCount(), 1, BREAKPOINT_HIT_ONCE)
+ @expectedFailureAll(oslist=["windows"], archs=["aarch64"])
@skipIfiOSSimulator
def test_with_attach_to_process_with_id_api(self):
"""Create target, spawn a process, and attach to it with process id."""
@@ -99,6 +100,7 @@ class HelloWorldTestCase(TestBase):
stacktraces, exe=False, substrs=["main.c:%d" % self.line2, "(int)argc=2"]
)
+ @expectedFailureAll(oslist=["windows"], archs=["aarch64"])
@skipIfiOSSimulator
@skipIfAsan # FIXME: Hangs indefinitely.
def test_with_attach_to_process_with_name_api(self):