Enables death tests on Cygwin and Mac (by Vlad Losev); fixes a python test on Mac.

This commit is contained in:
zhanyong.wan
2009-03-17 21:03:35 +00:00
parent 62f8d28c0b
commit 9623aed82c
4 changed files with 61 additions and 28 deletions

View File

@@ -41,6 +41,7 @@
#include <direct.h> // For chdir().
#else
#include <unistd.h>
#include <sys/wait.h> // For waitpid.
#include <limits> // For std::numeric_limits.
#endif // GTEST_OS_WINDOWS
@@ -414,7 +415,7 @@ void SetPthreadFlag() {
} // namespace
#if !GTEST_OS_WINDOWS
#if GTEST_HAS_CLONE
TEST_F(TestForDeathTest, DoesNotExecuteAtforkHooks) {
if (!testing::GTEST_FLAG(death_test_use_fork)) {
@@ -426,7 +427,7 @@ TEST_F(TestForDeathTest, DoesNotExecuteAtforkHooks) {
}
}
#endif // !GTEST_OS_WINDOWS
#endif // GTEST_HAS_CLONE
// Tests that a method of another class can be used in a death test.
TEST_F(TestForDeathTest, MethodOfAnotherClass) {