Skip to content

Commit 8d2f252

Browse files
committed
lldb: Run TestCrossDSOTailCalls.py and TestCrossObjectTailCalls.py on Darwin only
See https://bugs.llvm.org/show_bug.cgi?id=44561, these tests are failing on an aarch64/Linux bot: http://lab.llvm.org:8011/builders/lldb-aarch64-ubuntu/builds/655 For some reason the backtrace the tests are expecting to find is incomplete.
1 parent c65ac2b commit 8d2f252

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def setUp(self):
1717

1818
@skipIf(compiler="clang", compiler_version=['<', '8.0'])
1919
@skipIf(dwarf_version=['<', '4'])
20-
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
20+
@skipUnlessDarwin # llvm.org/PR44561
2121
def test_cross_dso_tail_calls(self):
2222
self.build()
2323
exe = self.getBuildArtifact("a.out")

lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def setUp(self):
1717

1818
@skipIf(compiler="clang", compiler_version=['<', '8.0'])
1919
@skipIf(dwarf_version=['<', '4'])
20-
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
20+
@skipUnlessDarwin # llvm.org/PR44561
2121
def test_cross_object_tail_calls(self):
2222
self.build()
2323
exe = self.getBuildArtifact("a.out")

0 commit comments

Comments
 (0)