xref: /aosp_15_r20/external/pytorch/c10/test/util/Macros.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
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