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 /test/gtest_help_test.py | |
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 'test/gtest_help_test.py')
-rwxr-xr-x | test/gtest_help_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gtest_help_test.py b/test/gtest_help_test.py index 0777106a..093c838d 100755 --- a/test/gtest_help_test.py +++ b/test/gtest_help_test.py @@ -74,7 +74,7 @@ HELP_REGEX = re.compile( FLAG_PREFIX + r'output=.*' + FLAG_PREFIX + r'break_on_failure.*' + FLAG_PREFIX + r'throw_on_failure.*' + - FLAG_PREFIX + r'catch_exceptions.*', + FLAG_PREFIX + r'catch_exceptions=0.*', re.DOTALL) |