Skip to content

Commit

Permalink
lldb: Run TestCrossDSOTailCalls.py and TestCrossObjectTailCalls.py on…
Browse files Browse the repository at this point in the history
… 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.

(cherry picked from commit 8d2f252)
  • Loading branch information
vedantk committed Jan 15, 2020
1 parent ebb7e40 commit 51bd4c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def setUp(self):

@skipIf(compiler="clang", compiler_version=['<', '8.0'])
@skipIf(dwarf_version=['<', '4'])
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
@skipUnlessDarwin # llvm.org/PR44561
def test_cross_dso_tail_calls(self):
self.build()
exe = self.getBuildArtifact("a.out")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def setUp(self):

@skipIf(compiler="clang", compiler_version=['<', '8.0'])
@skipIf(dwarf_version=['<', '4'])
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
@skipUnlessDarwin # llvm.org/PR44561
def test_cross_object_tail_calls(self):
self.build()
exe = self.getBuildArtifact("a.out")
Expand Down

0 comments on commit 51bd4c2

Please sign in to comment.