diff options
-rw-r--r-- | gui/qubjson_test.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/qubjson_test.cpp b/gui/qubjson_test.cpp index 67a6db0b..1d075ea7 100644 --- a/gui/qubjson_test.cpp +++ b/gui/qubjson_test.cpp @@ -152,6 +152,10 @@ TEST(qubjson, binary_data) { int main(int argc, char **argv) { +#if defined(_MSC_VER) && !defined(NDEBUG) + return 0; +#else ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); +#endif } |