Replies: 1 comment 5 replies
-
This may work... diff --git a/cpp/cmake_modules/BuildUtils.cmake b/cpp/cmake_modules/BuildUtils.cmake
index 134f47b12e..f198fddc0b 100644
--- a/cpp/cmake_modules/BuildUtils.cmake
+++ b/cpp/cmake_modules/BuildUtils.cmake
@@ -736,7 +736,7 @@ function(ADD_TEST_CASE REL_TEST_NAME)
valgrind --suppressions=valgrind.supp --tool=memcheck --gen-suppressions=all \
--num-callers=500 --leak-check=full --leak-check-heuristics=stdstring \
--error-exitcode=1 ${TEST_PATH} ${ARG_TEST_ARGUMENTS}")
- elseif(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL "Emscripten")
+ elseif(MSVC OR CMAKE_SYSTEM_NAME STREQUAL "Emscripten")
add_test(NAME ${TEST_NAME} COMMAND ${TEST_NAME} ${ARG_TEST_ARGUMENTS})
else()
add_test(${TEST_NAME} |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, does anyone know how to get procdump to produce a detailed log for segFault when running the cpp_test.sh?
For context, I am trying to get procdump logs on the
AMD64 Windows MinGW CLANG64 C++
andAMD64 Windows MinGW MINGW64 C++
workflows. TheTest
step code is inside cpp.yml. The segFault error that I am seeing is only reproducible on the CI and not on my local environment.Beta Was this translation helpful? Give feedback.
All reactions