From c988c267cf6e302ceda1edc5c7c679ecb64eab75 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 3 Aug 2022 20:46:44 -0700 Subject: [PATCH] [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. --- lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py b/lldb/test/API/lang/c/calling-conventions/TestCCallingConventions.py index a93cba9..f7a5e46 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 @@ 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 -- 2.7.4