[lldb] Re-enable TestCCallingConventions on Apple Silicon
authorJonas Devlieghere <jonas@devlieghere.com>
Thu, 4 Aug 2022 03:46:44 +0000 (20:46 -0700)
committerJonas Devlieghere <jonas@devlieghere.com>
Thu, 4 Aug 2022 03:50:05 +0000 (20:50 -0700)
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.

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

index a93cba9..f7a5e46 100644 (file)
@@ -47,7 +47,6 @@ class TestCase(TestBase):
         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