@@ -99,11 +99,8 @@ TEST(ScopeReflectionTest, SizeOf) {
99
99
EXPECT_EQ (Cpp::SizeOf (Decls[7 ]), (size_t )16 );
100
100
}
101
101
102
- #ifdef __APPLE__
103
- TEST (ScopeReflectionTest, DISABLED_IsBuiltin) {
104
- #else
102
+
105
103
TEST (ScopeReflectionTest, IsBuiltin) {
106
- #endif
107
104
// static std::set<std::string> g_builtins =
108
105
// {"bool", "char", "signed char", "unsigned char", "wchar_t", "short", "unsigned short",
109
106
// "int", "unsigned int", "long", "unsigned long", "long long", "unsigned long long",
@@ -433,11 +430,7 @@ TEST(ScopeReflectionTest, GetScopefromCompleteName) {
433
430
EXPECT_EQ (Cpp::GetQualifiedName (Cpp::GetScopeFromCompleteName (" N1::N2::C::S" )), " N1::N2::C::S" );
434
431
}
435
432
436
- #ifdef __APPLE__
437
- TEST (ScopeReflectionTest, DISABLED_GetNamed) {
438
- #else
439
433
TEST (ScopeReflectionTest, GetNamed) {
440
- #endif
441
434
std::string code = R"( namespace N1 {
442
435
namespace N2 {
443
436
class C {
@@ -761,11 +754,7 @@ TEST(ScopeReflectionTest, InstantiateNNTPClassTemplate) {
761
754
/* type_size*/ args1.size ()));
762
755
}
763
756
764
- #ifdef __APPLE__
765
- TEST (ScopeReflectionTest, DISABLED_InstantiateTemplateFunctionFromString) {
766
- #else
767
757
TEST (ScopeReflectionTest, InstantiateTemplateFunctionFromString) {
768
- #endif
769
758
Cpp::CreateInterpreter ();
770
759
std::string code = R"( #include <memory>)" ;
771
760
Interp->process (code);
@@ -905,11 +894,8 @@ TEST(ScopeReflectionTest, GetClassTemplateInstantiationArgs) {
905
894
EXPECT_TRUE (instance_types.size () == 0 );
906
895
}
907
896
908
- #ifdef __APPLE__
909
- TEST (ScopeReflectionTest, DISABLED_IncludeVector) {
910
- #else
897
+
911
898
TEST (ScopeReflectionTest, IncludeVector) {
912
- #endif
913
899
std::string code = R"(
914
900
#include <vector>
915
901
#include <iostream>
0 commit comments