You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
533 B
18 lines
533 B
diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc
|
|
index 96b07c6..4af3e5a 100644
|
|
--- a/googletest/src/gtest.cc
|
|
+++ b/googletest/src/gtest.cc
|
|
@@ -2693,10 +2693,12 @@ void TestInfo::Run() {
|
|
test->Run();
|
|
}
|
|
|
|
+ if (test != NULL) {
|
|
// Deletes the test object.
|
|
impl->os_stack_trace_getter()->UponLeavingGTest();
|
|
internal::HandleExceptionsInMethodIfSupported(
|
|
test, &Test::DeleteSelf_, "the test fixture's destructor");
|
|
+ }
|
|
|
|
result_.set_elapsed_time(internal::GetTimeInMillis() - start);
|
|
|