diff options
author | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2009-04-24 00:26:25 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2009-04-24 00:26:25 +0000 |
commit | f2d0d0e3d56794855d1e9a1f157457b7225e8c88 (patch) | |
tree | c31ceb2e69ca6e51ebef7a3978bd7d7f900db6a1 /test/gtest_output_test_.cc | |
parent | f204cd89e591e8cda022f4b471962c8556e19b8c (diff) | |
download | googletest-f2d0d0e3d56794855d1e9a1f157457b7225e8c88.tar.gz googletest-f2d0d0e3d56794855d1e9a1f157457b7225e8c88.tar.bz2 googletest-f2d0d0e3d56794855d1e9a1f157457b7225e8c88.zip |
Renames the POSIX wrappers (by Zhanyong Wan) and adds more targets to SConscript (by Vlad Losev).
Diffstat (limited to 'test/gtest_output_test_.cc')
-rw-r--r-- | test/gtest_output_test_.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gtest_output_test_.cc b/test/gtest_output_test_.cc index 4d7f0758..9c92d8cc 100644 --- a/test/gtest_output_test_.cc +++ b/test/gtest_output_test_.cc @@ -991,9 +991,9 @@ int main(int argc, char **argv) { // Skip the usual output capturing if we're running as the child // process of an threadsafe-style death test. #if GTEST_OS_WINDOWS - posix::freopen("nul:", "w", stdout); + posix::FReopen("nul:", "w", stdout); #else - posix::freopen("/dev/null", "w", stdout); + posix::FReopen("/dev/null", "w", stdout); #endif // GTEST_OS_WINDOWS return RUN_ALL_TESTS(); } |