aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2021-11-11 11:54:41 +0100
committerEike Ziller <eike.ziller@qt.io>2021-11-11 13:04:42 +0100
commit164aae53d201d974f7cfb12e0925add92fbdd571 (patch)
tree5d72e2152b9e71664c995970a63a42360c8b264d /src/plugins/autotest
parentaac740f127b8869400651322d4636315efda0bad (diff)
parentc97a1440341c963e24003335af2e1cc981827038 (diff)
Merge remote-tracking branch 'origin/6.0'
Conflicts: src/libs/utils/theme/theme_mac.mm src/plugins/android/androiddeployqtstep.cpp src/plugins/debugger/lldb/lldbengine.cpp Change-Id: I5f2c62e0bce6c91a53a554b3278dbe23ff7dde36
Diffstat (limited to 'src/plugins/autotest')
-rw-r--r--src/plugins/autotest/gtest/gtestconfiguration.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/autotest/gtest/gtestconfiguration.cpp b/src/plugins/autotest/gtest/gtestconfiguration.cpp
index a4903b075a..cbdd0c8e8a 100644
--- a/src/plugins/autotest/gtest/gtestconfiguration.cpp
+++ b/src/plugins/autotest/gtest/gtestconfiguration.cpp
@@ -55,6 +55,7 @@ QStringList filterInterfering(const QStringList &provided, QStringList *omitted)
"--gtest_stream_result_to=",
"--gtest_break_on_failure",
"--gtest_throw_on_failure",
+ "--gtest_catch_exceptions=",
"--gtest_print_time="
};
@@ -100,6 +101,7 @@ QStringList GTestConfiguration::argumentsForTestRunner(QStringList *omitted) con
if (isDebugRunMode()) {
if (gSettings->breakOnFailure.value())
arguments << "--gtest_break_on_failure";
+ arguments << "--gtest_catch_exceptions=0";
}
return arguments;
}