summaryrefslogtreecommitdiffstats
path: root/googletest/test
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2023-06-15 14:52:03 (GMT)
committerCopybara-Service <copybara-worker@google.com>2023-06-15 14:52:45 (GMT)
commit18fa6a4db32a30675c0b19bf72f8b5f693d21a23 (patch)
treeb2a54fb18d5454cb218edb73dc2b1759d375c3e2 /googletest/test
parent4c7aee827e16aa338189b88f6e3aa6d3d927dba4 (diff)
downloadgoogletest-18fa6a4db32a30675c0b19bf72f8b5f693d21a23.zip
googletest-18fa6a4db32a30675c0b19bf72f8b5f693d21a23.tar.gz
googletest-18fa6a4db32a30675c0b19bf72f8b5f693d21a23.tar.bz2
Allow clients to un-suppress output from gUnit EXPECT_EXIT tests.
This is useful for running individual tests in a separate process, which is useful for testing e.g. flag changes which have a process-global effect. PiperOrigin-RevId: 540580573 Change-Id: I18a5d24d79425a9d595be3369efc44e2f655f6f8
Diffstat (limited to 'googletest/test')
-rw-r--r--googletest/test/gtest_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/test/gtest_unittest.cc b/googletest/test/gtest_unittest.cc
index 77d968a..dd049a0 100644
--- a/googletest/test/gtest_unittest.cc
+++ b/googletest/test/gtest_unittest.cc
@@ -173,7 +173,7 @@ class TestEventListenersAccessor {
}
static void SuppressEventForwarding(TestEventListeners* listeners) {
- listeners->SuppressEventForwarding();
+ listeners->SuppressEventForwarding(true);
}
};