From f1794a885375a8f15aed16c5c467b8e0cee970d0 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 29 Jul 2021 06:56:38 -0700 Subject: [PATCH] Switch to threadsafe death test style --- test/test-main.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test-main.cc b/test/test-main.cc index b69cc5002c35..268ed086815d 100644 --- a/test/test-main.cc +++ b/test/test-main.cc @@ -35,6 +35,7 @@ int main(int argc, char** argv) { _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); try { testing::InitGoogleTest(&argc, argv); + testing::FLAGS_gtest_death_test_style = "threadsafe"; return RUN_ALL_TESTS(); } catch (...) { // Catch all exceptions to make Coverity happy.