Skip to content

Commit

Permalink
[LLDB] Xfail TestStepNoDebug.py AArch64/Windows
Browse files Browse the repository at this point in the history
LLDB fails to step in/out/over code with missing debug information.
This is only reproducible on AArch64/Windows. I have reported a issue
upstream at llvm.org/pr56292

This patch Xfail TestStepNoDebug.py for AArch64/Windows.
  • Loading branch information
omjavaid committed Jul 1, 2022
1 parent 6a9434b commit 3d477bb
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -14,6 +14,7 @@
class StepAvoidsNoDebugTestCase(TestBase):

@add_test_categories(['pyapi'])
@expectedFailureAll(archs=["aarch64"], oslist=["windows"], bugnumber="llvm.org/pr56292")
def test_step_out_with_python(self):
"""Test stepping out using avoid-no-debug with dsyms."""
self.build()
Expand All @@ -31,6 +32,7 @@ def test_step_out_with_python(self):
archs=["i386"],
oslist=no_match(["freebsd"]),
bugnumber="llvm.org/pr28549")
@expectedFailureAll(archs=["aarch64"], oslist=["windows"], bugnumber="llvm.org/pr56292")
def test_step_over_with_python(self):
"""Test stepping over using avoid-no-debug with dwarf."""
self.build()
Expand All @@ -48,6 +50,7 @@ def test_step_over_with_python(self):
archs=["i386"],
oslist=no_match(["freebsd"]),
bugnumber="llvm.org/pr28549")
@expectedFailureAll(archs=["aarch64"], oslist=["windows"], bugnumber="llvm.org/pr56292")
def test_step_in_with_python(self):
"""Test stepping in using avoid-no-debug with dwarf."""
self.build()
Expand Down

0 comments on commit 3d477bb

Please sign in to comment.