Skip to content

Commit 77369a7

Browse files
authored
[lldb] Fixed the TestDebuggerAPI test on x86_64 Windows host (#90580)
Disable the TestDebuggerAPI test in case of the remote target and Windows host.
1 parent 1126657 commit 77369a7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lldb/test/API/python_api/debugger/TestDebuggerAPI.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ def get_cache_line_size():
9191
# Test the local property again, is it set to new_cache_line_size?
9292
self.assertEqual(get_cache_line_size(), new_cache_line_size)
9393

94+
@expectedFailureAll(
95+
hostoslist=["windows"],
96+
remote=True,
97+
bugnumber="github.com/llvm/llvm-project/issues/92419",
98+
)
9499
def test_CreateTarget_platform(self):
95100
exe = self.getBuildArtifact("a.out")
96101
self.yaml2obj("elf.yaml", exe)

0 commit comments

Comments
 (0)