1 #ifndef C10_TEST_CORE_MACROS_MACROS_H_ 2 3 #ifdef _WIN32 4 #define DISABLED_ON_WINDOWS(x) DISABLED_##x 5 #else 6 #define DISABLED_ON_WINDOWS(x) x 7 #endif 8 9 #endif // C10_MACROS_MACROS_H_ 10