[Lldb-commits] [lldb] a0c1e75 - [lldb] Skip TestCCallingConventions.test_ms_abi on arm64

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 27 16:08:19 PDT 2021


Author: Jonas Devlieghere
Date: 2021-10-27T16:08:14-07:00
New Revision: a0c1e7571fe4f61d0f976bff3cdc50d1c2a578a6

URL: https://github.com/llvm/llvm-project/commit/a0c1e7571fe4f61d0f976bff3cdc50d1c2a578a6
DIFF: https://github.com/llvm/llvm-project/commit/a0c1e7571fe4f61d0f976bff3cdc50d1c2a578a6.diff

LOG: [lldb] Skip TestCCallingConventions.test_ms_abi on arm64

rdar://84528755

Added: 
    

Modified: 
    lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py b/lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py
index 5156190bc071..9a5acd5a1887 100644
--- a/lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py
+++ b/lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py
@@ -47,6 +47,7 @@ def test_regcall(self):
             return
         self.expect_expr("func(1, 2, 3, 4)", result_type="int", result_value="10")
 
+    @expectedFailureDarwin(archs=["arm64", "arm64e"]) # rdar://84528755
     def test_ms_abi(self):
         if not self.build_and_run("ms_abi.c"):
             return


        


More information about the lldb-commits mailing list