[Lldb-commits] [lldb] c988c26 - [lldb] Re-enable TestCCallingConventions on Apple Silicon

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 3 20:50:17 PDT 2022


Author: Jonas Devlieghere
Date: 2022-08-03T20:50:05-07:00
New Revision: c988c267cf6e302ceda1edc5c7c679ecb64eab75

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

LOG: [lldb] Re-enable TestCCallingConventions on Apple Silicon

This test was disabled because clang struggled to emit a Windows calling
convention when targeting an Apple environment. This test is now showing
up as an XPASS so someone must have fixed this.

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 a93cba998431d..f7a5e46627743 100644
--- a/lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py
+++ b/lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py
@@ -47,7 +47,6 @@ def test_regcall(self):
         self.expect_expr("func(1, 2, 3, 4)", result_type="int", result_value="10")
 
     @skipIf(compiler="clang", compiler_version=['<', '9.0'])
-    @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