diff options
| author | David Spickett <david.spickett@linaro.org> | 2025-12-15 14:04:02 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-15 14:04:02 +0000 |
| commit | f5a198b8aae83e8fe6b4439be345f3b9dd2e0778 (patch) | |
| tree | 0bd70d20fcfe7151326bd19a8df54f3e614f9d18 /lldb/test/API/python_api | |
| parent | a68fde57809562788a923e256915039f599b555f (diff) | |
| download | llvm-f5a198b8aae83e8fe6b4439be345f3b9dd2e0778.zip llvm-f5a198b8aae83e8fe6b4439be345f3b9dd2e0778.tar.gz llvm-f5a198b8aae83e8fe6b4439be345f3b9dd2e0778.tar.bz2 | |
[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.
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/hello_world/TestHelloWorld.py | 2 |
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 da540d3..e7b5c04 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): |
