summaryrefslogtreecommitdiff
path: root/test/gtest_stress_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/gtest_stress_test.cc')
-rw-r--r--test/gtest_stress_test.cc30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/gtest_stress_test.cc b/test/gtest_stress_test.cc
index f833b7c..c58f56c 100644
--- a/test/gtest_stress_test.cc
+++ b/test/gtest_stress_test.cc
@@ -112,6 +112,36 @@ TEST(StressTest, CanUseScopedTraceAndAssertionsInManyThreads) {
// ManyAsserts() in many threads here.
}
+TEST(NoFatalFailureTest, ExpectNoFatalFailureIgnoresFailuresInOtherThreads) {
+ // TODO(mheule@google.com): Test this works correctly when Google
+ // Test is made thread-safe.
+}
+
+TEST(NoFatalFailureTest, AssertNoFatalFailureIgnoresFailuresInOtherThreads) {
+ // TODO(mheule@google.com): Test this works correctly when Google
+ // Test is made thread-safe.
+}
+
+TEST(FatalFailureTest, ExpectFatalFailureIgnoresFailuresInOtherThreads) {
+ // TODO(mheule@google.com): Test this works correctly when Google
+ // Test is made thread-safe.
+}
+
+TEST(FatalFailureOnAllThreadsTest, ExpectFatalFailureOnAllThreads) {
+ // TODO(wan@google.com): Test this works correctly when Google Test
+ // is made thread-safe.
+}
+
+TEST(NonFatalFailureTest, ExpectNonFatalFailureIgnoresFailuresInOtherThreads) {
+ // TODO(mheule@google.com): Test this works correctly when Google
+ // Test is made thread-safe.
+}
+
+TEST(NonFatalFailureOnAllThreadsTest, ExpectNonFatalFailureOnAllThreads) {
+ // TODO(wan@google.com): Test this works correctly when Google Test
+ // is made thread-safe.
+}
+
} // namespace
} // namespace testing