From 2392d3cf4e5487ec5f5ab32da56d8c9cbfa94c7d Mon Sep 17 00:00:00 2001 From: Jose Fonseca Date: Fri, 14 Aug 2015 11:14:06 +0100 Subject: gui: Skip qubjson test on debug MSVC. It crashes due to MSVCRT static<->dynamic incompatability. --- gui/qubjson_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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 } -- cgit v1.2.3