From b81299be701e90abae724269564923fe27b51f6d Mon Sep 17 00:00:00 2001 From: Shreyas Atre Date: Thu, 4 Jan 2024 01:09:39 +0530 Subject: [PATCH] [Tests] CppInterOp: Revert the get_wrapper_code failure - Remove macro guard for GetFunctionAddress Signed-off-by: Shreyas Atre --- unittests/CppInterOp/FunctionReflectionTest.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/unittests/CppInterOp/FunctionReflectionTest.cpp b/unittests/CppInterOp/FunctionReflectionTest.cpp index d15cb1c02..96be337e6 100644 --- a/unittests/CppInterOp/FunctionReflectionTest.cpp +++ b/unittests/CppInterOp/FunctionReflectionTest.cpp @@ -553,11 +553,7 @@ TEST(FunctionReflectionTest, IsStaticMethod) { EXPECT_TRUE(Cpp::IsStaticMethod(SubDecls[2])); } -#ifdef __APPLE__ -TEST(FunctionReflectionTest, DISABLED_GetFunctionAddress) { -#else TEST(FunctionReflectionTest, GetFunctionAddress) { -#endif std::vector Decls, SubDecls; std::string code = "int f1(int i) { return i * i; }";