lldb: xfail TestCrossDSOTailCalls.py and TestCrossObjectTailCalls.py on arm/aarch64
authorVedant Kumar <vsk@apple.com>
Thu, 16 Jan 2020 22:43:58 +0000 (14:43 -0800)
committerVedant Kumar <vsk@apple.com>
Thu, 16 Jan 2020 22:48:51 +0000 (14:48 -0800)
This effectively reverts commit
8d2f252bb8e4d199be8498c4ee2245117ef08fd2, which went a bit too far and
disabled these on all non-Darwin systems.

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

index 4581a75..3f7e060 100644 (file)
@@ -17,7 +17,8 @@ class TestCrossDSOTailCalls(TestBase):
 
     @skipIf(compiler="clang", compiler_version=['<', '8.0'])
     @skipIf(dwarf_version=['<', '4'])
-    @skipUnlessDarwin # llvm.org/PR44561
+    @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
+    @expectedFailureAll(archs=['arm', 'aarch64'], bugnumber="llvm.org/PR44561")
     def test_cross_dso_tail_calls(self):
         self.build()
         exe = self.getBuildArtifact("a.out")
index dcdf959..e04ef96 100644 (file)
@@ -17,7 +17,8 @@ class TestCrossObjectTailCalls(TestBase):
 
     @skipIf(compiler="clang", compiler_version=['<', '8.0'])
     @skipIf(dwarf_version=['<', '4'])
-    @skipUnlessDarwin # llvm.org/PR44561
+    @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265")
+    @expectedFailureAll(archs=['arm', 'aarch64'], bugnumber="llvm.org/PR44561")
     def test_cross_object_tail_calls(self):
         self.build()
         exe = self.getBuildArtifact("a.out")