diff options
author | Copybara-Service <copybara-worker@google.com> | 2023-06-27 00:24:42 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-06-27 00:24:42 (GMT) |
commit | 8e32de89cfe725dc9c084044b71e9c13246049c4 (patch) | |
tree | 4e6a938f1ca2a991fb48c31625585144329181de /googletest/test/googletest-catch-exceptions-test.py | |
parent | 372e81d8141783ff2914349bf6c02819ec08d980 (diff) | |
parent | 1361c77c4d0027f52a7a8e205b79d572909b5587 (diff) | |
download | googletest-8e32de89cfe725dc9c084044b71e9c13246049c4.zip googletest-8e32de89cfe725dc9c084044b71e9c13246049c4.tar.gz googletest-8e32de89cfe725dc9c084044b71e9c13246049c4.tar.bz2 |
Merge pull request #4300 from eltociear:patch-1
PiperOrigin-RevId: 543586460
Change-Id: I87ee05c4b77fb643a3381018568a4765d0a12b18
Diffstat (limited to 'googletest/test/googletest-catch-exceptions-test.py')
-rwxr-xr-x | googletest/test/googletest-catch-exceptions-test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/test/googletest-catch-exceptions-test.py b/googletest/test/googletest-catch-exceptions-test.py index ee4dc9a..180e18d 100755 --- a/googletest/test/googletest-catch-exceptions-test.py +++ b/googletest/test/googletest-catch-exceptions-test.py @@ -297,10 +297,10 @@ class CatchCxxExceptionsTest(gtest_test_utils.TestCase): def testUnhandledCxxExceptionsAbortTheProgram(self): # Filters out SEH exception tests on Windows. Unhandled SEH exceptions # cause tests to show pop-up windows there. - FITLER_OUT_SEH_TESTS_FLAG = FILTER_FLAG + '=-*Seh*' + filter_out_seh_tests_flag = FILTER_FLAG + '=-*Seh*' # By default, Google Test doesn't catch the exceptions. uncaught_exceptions_ex_binary_output = gtest_test_utils.Subprocess( - [EX_EXE_PATH, NO_CATCH_EXCEPTIONS_FLAG, FITLER_OUT_SEH_TESTS_FLAG], + [EX_EXE_PATH, NO_CATCH_EXCEPTIONS_FLAG, filter_out_seh_tests_flag], env=environ, ).output |