diff options
author | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-10-26 23:12:47 +0000 |
---|---|---|
committer | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-10-26 23:12:47 +0000 |
commit | 82cc1d1135879be3b901a10e224dbd827365f8bf (patch) | |
tree | 490d88c5462527cf7bed5df3ee6a3fcafc204a37 /src | |
parent | 25958f3e4c4097caca8347b7937f5f6fb26d6c56 (diff) | |
download | googletest-82cc1d1135879be3b901a10e224dbd827365f8bf.tar.gz googletest-82cc1d1135879be3b901a10e224dbd827365f8bf.tar.bz2 googletest-82cc1d1135879be3b901a10e224dbd827365f8bf.zip |
Changes default of --gtest_catch_exceptions to true.
Diffstat (limited to 'src')
-rw-r--r-- | src/gtest.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gtest.cc b/src/gtest.cc index ea3a47c5..ba27bba0 100644 --- a/src/gtest.cc +++ b/src/gtest.cc @@ -191,7 +191,7 @@ GTEST_DEFINE_bool_( GTEST_DEFINE_bool_( catch_exceptions, - internal::BoolFromGTestEnv("catch_exceptions", false), + internal::BoolFromGTestEnv("catch_exceptions", true), "True iff " GTEST_NAME_ " should catch exceptions and treat them as test failures."); @@ -4711,8 +4711,9 @@ static const char kColorEncodedHelpMessage[] = " Turn assertion failures into debugger break-points.\n" " @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n" " Turn assertion failures into C++ exceptions.\n" -" @G--" GTEST_FLAG_PREFIX_ "catch_exceptions@D\n" -" Suppress pop-ups caused by exceptions.\n" +" @G--" GTEST_FLAG_PREFIX_ "catch_exceptions=0@D\n" +" Do not report exceptions as test failures. Instead, allow them\n" +" to crash the program or throw a pop-up (on Windows).\n" "\n" "Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set " "the corresponding\n" |