@@ -99,11 +99,8 @@ TEST(ScopeReflectionTest, SizeOf) {
9999 EXPECT_EQ (Cpp::SizeOf (Decls[7 ]), (size_t )16 );
100100}
101101
102- #ifdef __APPLE__
103- TEST (ScopeReflectionTest, DISABLED_IsBuiltin) {
104- #else
102+
105103TEST (ScopeReflectionTest, IsBuiltin) {
106- #endif
107104 // static std::set<std::string> g_builtins =
108105 // {"bool", "char", "signed char", "unsigned char", "wchar_t", "short", "unsigned short",
109106 // "int", "unsigned int", "long", "unsigned long", "long long", "unsigned long long",
@@ -433,11 +430,7 @@ TEST(ScopeReflectionTest, GetScopefromCompleteName) {
433430 EXPECT_EQ (Cpp::GetQualifiedName (Cpp::GetScopeFromCompleteName (" N1::N2::C::S" )), " N1::N2::C::S" );
434431}
435432
436- #ifdef __APPLE__
437- TEST (ScopeReflectionTest, DISABLED_GetNamed) {
438- #else
439433TEST (ScopeReflectionTest, GetNamed) {
440- #endif
441434 std::string code = R"( namespace N1 {
442435 namespace N2 {
443436 class C {
@@ -761,11 +754,7 @@ TEST(ScopeReflectionTest, InstantiateNNTPClassTemplate) {
761754 /* type_size*/ args1.size ()));
762755}
763756
764- #ifdef __APPLE__
765- TEST (ScopeReflectionTest, DISABLED_InstantiateTemplateFunctionFromString) {
766- #else
767757TEST (ScopeReflectionTest, InstantiateTemplateFunctionFromString) {
768- #endif
769758 Cpp::CreateInterpreter ();
770759 std::string code = R"( #include <memory>)" ;
771760 Interp->process (code);
@@ -905,11 +894,8 @@ TEST(ScopeReflectionTest, GetClassTemplateInstantiationArgs) {
905894 EXPECT_TRUE (instance_types.size () == 0 );
906895}
907896
908- #ifdef __APPLE__
909- TEST (ScopeReflectionTest, DISABLED_IncludeVector) {
910- #else
897+
911898TEST (ScopeReflectionTest, IncludeVector) {
912- #endif
913899 std::string code = R"(
914900 #include <vector>
915901 #include <iostream>
0 commit comments