summaryrefslogtreecommitdiffstats
path: root/googletest/src
diff options
context:
space:
mode:
authordurandal <durandal@google.com>2018-10-23 15:31:17 -0400
committerGennadiy Civil <misterg@google.com>2018-10-24 11:26:16 -0400
commit59f90a338bce2376b540ee239cf4e269bf6d68ad (patch)
tree5111348d2ecf366d8560e992a8976cd40e66d69c /googletest/src
parent3bb00b7ead35ca3a9b5817ce1ab78050fe6be0e3 (diff)
downloadgoogletest-59f90a338bce2376b540ee239cf4e269bf6d68ad.tar.gz
googletest-59f90a338bce2376b540ee239cf4e269bf6d68ad.zip
Googletest export
Honor GTEST_SKIP() in SetUp(). PiperOrigin-RevId: 218387359
Diffstat (limited to 'googletest/src')
-rw-r--r--googletest/src/gtest.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc
index 4a9c3817..332b3e9b 100644
--- a/googletest/src/gtest.cc
+++ b/googletest/src/gtest.cc
@@ -2520,8 +2520,9 @@ void Test::Run() {
internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();
impl->os_stack_trace_getter()->UponLeavingGTest();
internal::HandleExceptionsInMethodIfSupported(this, &Test::SetUp, "SetUp()");
- // We will run the test only if SetUp() was successful.
- if (!HasFatalFailure()) {
+ // We will run the test only if SetUp() was successful and didn't call
+ // GTEST_SKIP().
+ if (!HasFatalFailure() && !IsSkipped()) {
impl->os_stack_trace_getter()->UponLeavingGTest();
internal::HandleExceptionsInMethodIfSupported(
this, &Test::TestBody, "the test body");
@@ -2698,9 +2699,10 @@ void TestInfo::Run() {
factory_, &internal::TestFactoryBase::CreateTest,
"the test fixture's constructor");
- // Runs the test if the constructor didn't generate a fatal failure.
+ // Runs the test if the constructor didn't generate a fatal failure or invoke
+ // GTEST_SKIP().
// Note that the object will not be null
- if (!Test::HasFatalFailure()) {
+ if (!Test::HasFatalFailure() && !Test::IsSkipped()) {
// This doesn't throw as all user code that can throw are wrapped into
// exception handling code.
test->Run();
OpenPOWER on IntegriCloud