Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
d850e144
Commit
d850e144
authored
Feb 13, 2019
by
Gennadiy Civil
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2112 from knuto:pr/fix_null_pointer
PiperOrigin-RevId: 233825166
parents
54ec41f0
48e6f1f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
advanced.md
googletest/docs/advanced.md
+4
-5
gtest.cc
googletest/src/gtest.cc
+2
-0
No files found.
googletest/docs/advanced.md
View file @
d850e144
...
@@ -2430,7 +2430,7 @@ could generate this report:
...
@@ -2430,7 +2430,7 @@ could generate this report:
"failures"
:
1
,
"failures"
:
1
,
"errors"
:
0
,
"errors"
:
0
,
"time"
:
"0.035s"
,
"time"
:
"0.035s"
,
"timestamp"
:
"2011-10-31T18:52:42Z"
"timestamp"
:
"2011-10-31T18:52:42Z"
,
"name"
:
"AllTests"
,
"name"
:
"AllTests"
,
"testsuites"
:
[
"testsuites"
:
[
{
{
...
@@ -2447,11 +2447,11 @@ could generate this report:
...
@@ -2447,11 +2447,11 @@ could generate this report:
"classname"
:
""
,
"classname"
:
""
,
"failures"
:
[
"failures"
:
[
{
{
"message"
:
"Value of: add(1, 1)
\
x
0A Actual: 3
\x
0A
Expected: 2"
,
"message"
:
"Value of: add(1, 1)
\
n
Actual: 3
\n
Expected: 2"
,
"type"
:
""
"type"
:
""
},
},
{
{
"message"
:
"Value of: add(1, -1)
\
x
0A Actual: 1
\x
0A
Expected: 0"
,
"message"
:
"Value of: add(1, -1)
\
n
Actual: 1
\n
Expected: 0"
,
"type"
:
""
"type"
:
""
}
}
]
]
...
@@ -2463,7 +2463,7 @@ could generate this report:
...
@@ -2463,7 +2463,7 @@ could generate this report:
"classname"
:
""
"classname"
:
""
}
}
]
]
}
}
,
{
{
"name"
:
"LogicTest"
,
"name"
:
"LogicTest"
,
"tests"
:
1
,
"tests"
:
1
,
...
@@ -2517,4 +2517,3 @@ environment variable to `0`, or use the `--gtest_catch_exceptions=0` flag when
...
@@ -2517,4 +2517,3 @@ environment variable to `0`, or use the `--gtest_catch_exceptions=0` flag when
running the tests.
running the tests.
**Availability**
: Linux, Windows, Mac.
**Availability**
: Linux, Windows, Mac.
googletest/src/gtest.cc
View file @
d850e144
...
@@ -2675,10 +2675,12 @@ void TestInfo::Run() {
...
@@ -2675,10 +2675,12 @@ void TestInfo::Run() {
test
->
Run
();
test
->
Run
();
}
}
if
(
test
!=
nullptr
)
{
// Deletes the test object.
// Deletes the test object.
impl
->
os_stack_trace_getter
()
->
UponLeavingGTest
();
impl
->
os_stack_trace_getter
()
->
UponLeavingGTest
();
internal
::
HandleExceptionsInMethodIfSupported
(
internal
::
HandleExceptionsInMethodIfSupported
(
test
,
&
Test
::
DeleteSelf_
,
"the test fixture's destructor"
);
test
,
&
Test
::
DeleteSelf_
,
"the test fixture's destructor"
);
}
result_
.
set_elapsed_time
(
internal
::
GetTimeInMillis
()
-
start
);
result_
.
set_elapsed_time
(
internal
::
GetTimeInMillis
()
-
start
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment