aboutsummaryrefslogtreecommitdiffstats
path: root/test/gtest_env_var_test.py
diff options
context:
space:
mode:
authorjgm <jgm@google.com>2012-03-09 17:12:39 +0000
committerjgm <jgm@google.com>2012-03-09 17:12:39 +0000
commitf0b86fc3b0f625e1db84f3632cb37bd9eae6ae19 (patch)
treedea331f222e639cfc37f481766bbc88ce20dc7cb /test/gtest_env_var_test.py
parentcfb40870bc74dc57616e286461a89c9f259b349d (diff)
downloadgoogletest-f0b86fc3b0f625e1db84f3632cb37bd9eae6ae19.tar.gz
googletest-f0b86fc3b0f625e1db84f3632cb37bd9eae6ae19.tar.bz2
googletest-f0b86fc3b0f625e1db84f3632cb37bd9eae6ae19.zip
Misc small updates to some debug death code, and to messages streaming to macros
Diffstat (limited to 'test/gtest_env_var_test.py')
-rwxr-xr-xtest/gtest_env_var_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/gtest_env_var_test.py b/test/gtest_env_var_test.py
index ac24337f..4728bbc3 100755
--- a/test/gtest_env_var_test.py
+++ b/test/gtest_env_var_test.py
@@ -67,7 +67,8 @@ def GetFlag(flag):
args = [COMMAND]
if flag is not None:
args += [flag]
- return gtest_test_utils.Subprocess(args, env=environ).output
+ return gtest_test_utils.Subprocess(args, env=environ,
+ capture_stderr=False).output
def TestFlag(flag, test_val, default_val):