Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
b4d4438d
Unverified
Commit
b4d4438d
authored
Jul 12, 2018
by
Gennadiy Civil
Committed by
GitHub
Jul 12, 2018
Browse files
Merge pull request #1653 from derekmauro/stacktrace
Adds stacktrace support from Abseil to Google Test
parents
df0d0a3f
82670da6
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
379 additions
and
37 deletions
+379
-37
BUILD.bazel
BUILD.bazel
+4
-1
googletest/CMakeLists.txt
googletest/CMakeLists.txt
+2
-2
googletest/cmake/internal_utils.cmake
googletest/cmake/internal_utils.cmake
+3
-3
googletest/src/gtest-internal-inl.h
googletest/src/gtest-internal-inl.h
+10
-0
googletest/src/gtest.cc
googletest/src/gtest.cc
+83
-3
googletest/test/BUILD.bazel
googletest/test/BUILD.bazel
+42
-20
googletest/test/gtest_output_test.py
googletest/test/gtest_output_test.py
+10
-4
googletest/test/gtest_output_test_golden_lin.txt
googletest/test/gtest_output_test_golden_lin.txt
+219
-3
googletest/test/gtest_xml_output_unittest.py
googletest/test/gtest_xml_output_unittest.py
+6
-1
No files found.
BUILD.bazel
View file @
b4d4438d
...
@@ -104,9 +104,12 @@ cc_library(
...
@@ -104,9 +104,12 @@ cc_library(
deps
=
select
(
deps
=
select
(
{
{
":has_absl"
:
[
":has_absl"
:
[
"@com_google_absl//absl/debugging:failure_signal_handler"
,
"@com_google_absl//absl/debugging:stacktrace"
,
"@com_google_absl//absl/debugging:symbolize"
,
"@com_google_absl//absl/strings"
,
"@com_google_absl//absl/types:optional"
,
"@com_google_absl//absl/types:optional"
,
"@com_google_absl//absl/types:variant"
,
"@com_google_absl//absl/types:variant"
,
"@com_google_absl//absl/strings"
,
],
],
"//conditions:default"
:
[],
"//conditions:default"
:
[],
},
},
...
...
googletest/CMakeLists.txt
View file @
b4d4438d
...
@@ -284,7 +284,7 @@ if (gtest_build_tests)
...
@@ -284,7 +284,7 @@ if (gtest_build_tests)
py_test
(
gtest_list_tests_unittest
)
py_test
(
gtest_list_tests_unittest
)
cxx_executable
(
gtest_output_test_ test gtest
)
cxx_executable
(
gtest_output_test_ test gtest
)
py_test
(
gtest_output_test
)
py_test
(
gtest_output_test
--no_stacktrace_support
)
cxx_executable
(
gtest_shuffle_test_ test gtest
)
cxx_executable
(
gtest_shuffle_test_ test gtest
)
py_test
(
gtest_shuffle_test
)
py_test
(
gtest_shuffle_test
)
...
@@ -307,6 +307,6 @@ if (gtest_build_tests)
...
@@ -307,6 +307,6 @@ if (gtest_build_tests)
py_test
(
gtest_json_outfiles_test
)
py_test
(
gtest_json_outfiles_test
)
cxx_executable
(
gtest_xml_output_unittest_ test gtest
)
cxx_executable
(
gtest_xml_output_unittest_ test gtest
)
py_test
(
gtest_xml_output_unittest
)
py_test
(
gtest_xml_output_unittest
--no_stacktrace_support
)
py_test
(
gtest_json_output_unittest
)
py_test
(
gtest_json_output_unittest
)
endif
()
endif
()
googletest/cmake/internal_utils.cmake
View file @
b4d4438d
...
@@ -257,14 +257,14 @@ function(py_test name)
...
@@ -257,14 +257,14 @@ function(py_test name)
add_test
(
add_test
(
NAME
${
name
}
NAME
${
name
}
COMMAND
${
PYTHON_EXECUTABLE
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/test/
${
name
}
.py
COMMAND
${
PYTHON_EXECUTABLE
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/test/
${
name
}
.py
--build_dir=
${
CMAKE_CURRENT_BINARY_DIR
}
/$<CONFIG>
)
--build_dir=
${
CMAKE_CURRENT_BINARY_DIR
}
/$<CONFIG>
${
ARGN
}
)
else
(
CMAKE_CONFIGURATION_TYPES
)
else
(
CMAKE_CONFIGURATION_TYPES
)
# Single-configuration build generators like Makefile generators
# Single-configuration build generators like Makefile generators
# don't have subdirs below CMAKE_CURRENT_BINARY_DIR.
# don't have subdirs below CMAKE_CURRENT_BINARY_DIR.
add_test
(
add_test
(
NAME
${
name
}
NAME
${
name
}
COMMAND
${
PYTHON_EXECUTABLE
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/test/
${
name
}
.py
COMMAND
${
PYTHON_EXECUTABLE
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/test/
${
name
}
.py
--build_dir=
${
CMAKE_CURRENT_BINARY_DIR
}
)
--build_dir=
${
CMAKE_CURRENT_BINARY_DIR
}
${
ARGN
}
)
endif
(
CMAKE_CONFIGURATION_TYPES
)
endif
(
CMAKE_CONFIGURATION_TYPES
)
else
(
${
CMAKE_MAJOR_VERSION
}
.
${
CMAKE_MINOR_VERSION
}
GREATER 3.1
)
else
(
${
CMAKE_MAJOR_VERSION
}
.
${
CMAKE_MINOR_VERSION
}
GREATER 3.1
)
# ${CMAKE_CURRENT_BINARY_DIR} is known at configuration time, so we can
# ${CMAKE_CURRENT_BINARY_DIR} is known at configuration time, so we can
...
@@ -274,7 +274,7 @@ function(py_test name)
...
@@ -274,7 +274,7 @@ function(py_test name)
add_test
(
add_test
(
${
name
}
${
name
}
${
PYTHON_EXECUTABLE
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/test/
${
name
}
.py
${
PYTHON_EXECUTABLE
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/test/
${
name
}
.py
--build_dir=
${
CMAKE_CURRENT_BINARY_DIR
}
/\
${
CTEST_CONFIGURATION_TYPE
}
)
--build_dir=
${
CMAKE_CURRENT_BINARY_DIR
}
/\
${
CTEST_CONFIGURATION_TYPE
}
${
ARGN
}
)
endif
(
${
CMAKE_MAJOR_VERSION
}
.
${
CMAKE_MINOR_VERSION
}
GREATER 3.1
)
endif
(
${
CMAKE_MAJOR_VERSION
}
.
${
CMAKE_MINOR_VERSION
}
GREATER 3.1
)
endif
(
PYTHONINTERP_FOUND
)
endif
(
PYTHONINTERP_FOUND
)
endfunction
()
endfunction
()
googletest/src/gtest-internal-inl.h
View file @
b4d4438d
...
@@ -446,6 +446,16 @@ class OsStackTraceGetter : public OsStackTraceGetterInterface {
...
@@ -446,6 +446,16 @@ class OsStackTraceGetter : public OsStackTraceGetterInterface {
virtual
void
UponLeavingGTest
();
virtual
void
UponLeavingGTest
();
private:
private:
#if GTEST_HAS_ABSL
Mutex
mutex_
;
// Protects all internal state.
// We save the stack frame below the frame that calls user code.
// We do this because the address of the frame immediately below
// the user code changes between the call to UponLeavingGTest()
// and any calls to the stack trace code from within the user code.
void
*
caller_frame_
=
nullptr
;
#endif // GTEST_HAS_ABSL
GTEST_DISALLOW_COPY_AND_ASSIGN_
(
OsStackTraceGetter
);
GTEST_DISALLOW_COPY_AND_ASSIGN_
(
OsStackTraceGetter
);
};
};
...
...
googletest/src/gtest.cc
View file @
b4d4438d
...
@@ -139,6 +139,13 @@
...
@@ -139,6 +139,13 @@
# define vsnprintf _vsnprintf
# define vsnprintf _vsnprintf
#endif // GTEST_OS_WINDOWS
#endif // GTEST_OS_WINDOWS
#if GTEST_HAS_ABSL
#include "absl/debugging/failure_signal_handler.h"
#include "absl/debugging/stacktrace.h"
#include "absl/debugging/symbolize.h"
#include "absl/strings/str_cat.h"
#endif // GTEST_HAS_ABSL
namespace
testing
{
namespace
testing
{
using
internal
::
CountIf
;
using
internal
::
CountIf
;
...
@@ -228,6 +235,13 @@ GTEST_DEFINE_string_(
...
@@ -228,6 +235,13 @@ GTEST_DEFINE_string_(
"exclude). A test is run if it matches one of the positive "
"exclude). A test is run if it matches one of the positive "
"patterns and does not match any of the negative patterns."
);
"patterns and does not match any of the negative patterns."
);
GTEST_DEFINE_bool_
(
install_failure_signal_handler
,
internal
::
BoolFromGTestEnv
(
"install_failure_signal_handler"
,
false
),
"If true and supported on the current platform, "
GTEST_NAME_
" should "
"install a signal handler that dumps debugging information when fatal "
"signals are raised."
);
GTEST_DEFINE_bool_
(
list_tests
,
false
,
GTEST_DEFINE_bool_
(
list_tests
,
false
,
"List all tests without running them."
);
"List all tests without running them."
);
...
@@ -4243,12 +4257,67 @@ void StreamingListener::SocketWriter::MakeConnection() {
...
@@ -4243,12 +4257,67 @@ void StreamingListener::SocketWriter::MakeConnection() {
const
char
*
const
OsStackTraceGetterInterface
::
kElidedFramesMarker
=
const
char
*
const
OsStackTraceGetterInterface
::
kElidedFramesMarker
=
"... "
GTEST_NAME_
" internal frames ..."
;
"... "
GTEST_NAME_
" internal frames ..."
;
std
::
string
OsStackTraceGetter
::
CurrentStackTrace
(
int
/*max_depth*/
,
std
::
string
OsStackTraceGetter
::
CurrentStackTrace
(
int
max_depth
,
int
skip_count
)
int
/*skip_count*/
)
{
GTEST_LOCK_EXCLUDED_
(
mutex_
)
{
#if GTEST_HAS_ABSL
std
::
string
result
;
if
(
max_depth
<=
0
)
{
return
result
;
}
max_depth
=
std
::
min
(
max_depth
,
kMaxStackTraceDepth
);
std
::
vector
<
void
*>
raw_stack
(
max_depth
);
// Skips the frames requested by the caller, plus this function.
const
int
raw_stack_size
=
absl
::
GetStackTrace
(
&
raw_stack
[
0
],
max_depth
,
skip_count
+
1
);
void
*
caller_frame
=
nullptr
;
{
MutexLock
lock
(
&
mutex_
);
caller_frame
=
caller_frame_
;
}
for
(
int
i
=
0
;
i
<
raw_stack_size
;
++
i
)
{
if
(
raw_stack
[
i
]
==
caller_frame
&&
!
GTEST_FLAG
(
show_internal_stack_frames
))
{
// Add a marker to the trace and stop adding frames.
absl
::
StrAppend
(
&
result
,
kElidedFramesMarker
,
"
\n
"
);
break
;
}
char
tmp
[
1024
];
const
char
*
symbol
=
"(unknown)"
;
if
(
absl
::
Symbolize
(
raw_stack
[
i
],
tmp
,
sizeof
(
tmp
)))
{
symbol
=
tmp
;
}
char
line
[
1024
];
snprintf
(
line
,
sizeof
(
line
),
" %p: %s
\n
"
,
raw_stack
[
i
],
symbol
);
result
+=
line
;
}
return
result
;
#else // !GTEST_HAS_ABSL
static_cast
<
void
>
(
max_depth
);
static_cast
<
void
>
(
skip_count
);
return
""
;
return
""
;
#endif // GTEST_HAS_ABSL
}
}
void
OsStackTraceGetter
::
UponLeavingGTest
()
{}
void
OsStackTraceGetter
::
UponLeavingGTest
()
GTEST_LOCK_EXCLUDED_
(
mutex_
)
{
#if GTEST_HAS_ABSL
void
*
caller_frame
=
nullptr
;
if
(
absl
::
GetStackTrace
(
&
caller_frame
,
1
,
3
)
<=
0
)
{
caller_frame
=
nullptr
;
}
MutexLock
lock
(
&
mutex_
);
caller_frame_
=
caller_frame
;
#endif // GTEST_HAS_ABSL
}
// A helper class that creates the premature-exit file in its
// A helper class that creates the premature-exit file in its
// constructor and deletes the file in its destructor.
// constructor and deletes the file in its destructor.
...
@@ -4865,6 +4934,13 @@ void UnitTestImpl::PostFlagParsingInit() {
...
@@ -4865,6 +4934,13 @@ void UnitTestImpl::PostFlagParsingInit() {
// Configures listeners for streaming test results to the specified server.
// Configures listeners for streaming test results to the specified server.
ConfigureStreamingOutput
();
ConfigureStreamingOutput
();
#endif // GTEST_CAN_STREAM_RESULTS_
#endif // GTEST_CAN_STREAM_RESULTS_
#if GTEST_HAS_ABSL
if
(
GTEST_FLAG
(
install_failure_signal_handler
))
{
absl
::
FailureSignalHandlerOptions
options
;
absl
::
InstallFailureSignalHandler
(
options
);
}
#endif // GTEST_HAS_ABSL
}
}
}
}
...
@@ -5769,6 +5845,10 @@ void InitGoogleTestImpl(int* argc, CharType** argv) {
...
@@ -5769,6 +5845,10 @@ void InitGoogleTestImpl(int* argc, CharType** argv) {
g_argvs
.
push_back
(
StreamableToString
(
argv
[
i
]));
g_argvs
.
push_back
(
StreamableToString
(
argv
[
i
]));
}
}
#if GTEST_HAS_ABSL
absl
::
InitializeSymbolizer
(
g_argvs
[
0
].
c_str
());
#endif // GTEST_HAS_ABSL
ParseGoogleTestFlagsOnly
(
argc
,
argv
);
ParseGoogleTestFlagsOnly
(
argc
,
argv
);
GetUnitTestImpl
()
->
PostFlagParsingInit
();
GetUnitTestImpl
()
->
PostFlagParsingInit
();
}
}
...
...
googletest/test/BUILD.bazel
View file @
b4d4438d
...
@@ -34,35 +34,48 @@
...
@@ -34,35 +34,48 @@
licenses
([
"notice"
])
licenses
([
"notice"
])
""" gtest own tests """
config_setting
(
name
=
"windows"
,
values
=
{
"cpu"
:
"x64_windows"
},
)
config_setting
(
name
=
"windows_msvc"
,
values
=
{
"cpu"
:
"x64_windows_msvc"
},
)
config_setting
(
name
=
"has_absl"
,
values
=
{
"define"
:
"absl=1"
},
)
#on windows exclude gtest-tuple.h and gtest-tuple_test.cc
#on windows exclude gtest-tuple.h and gtest-tuple_test.cc
cc_test
(
cc_test
(
name
=
"gtest_all_test"
,
name
=
"gtest_all_test"
,
size
=
"small"
,
size
=
"small"
,
srcs
=
glob
(
srcs
=
glob
(
include
=
[
include
=
[
"gtest-*.cc"
,
"gtest-*.cc"
,
"*.h"
,
"*.h"
,
"googletest/include/gtest/**/*.h"
,
"googletest/include/gtest/**/*.h"
,
],
],
exclude
=
[
exclude
=
[
"gtest-unittest-api_test.cc"
,
"gtest-unittest-api_test.cc"
,
"gtest-tuple_test.cc"
,
"gtest-tuple_test.cc"
,
"googletest/src/gtest-all.cc"
,
"googletest/src/gtest-all.cc"
,
"gtest_all_test.cc"
,
"gtest_all_test.cc"
,
"gtest-death-test_ex_test.cc"
,
"gtest-death-test_ex_test.cc"
,
"gtest-listener_test.cc"
,
"gtest-listener_test.cc"
,
"gtest-unittest-api_test.cc"
,
"gtest-unittest-api_test.cc"
,
"gtest-param-test_test.cc"
,
"gtest-param-test_test.cc"
,
],
],
)
+
select
({
)
+
select
({
"//:windows"
:
[],
"//:windows"
:
[],
"//:windows_msvc"
:
[],
"//:windows_msvc"
:
[],
"//conditions:default"
:
[
"//conditions:default"
:
[
"gtest-tuple_test.cc"
,
"gtest-tuple_test.cc"
,
],
],
}),
}),
copts
=
select
({
copts
=
select
({
"//:windows"
:
[
"-DGTEST_USE_OWN_TR1_TUPLE=0"
],
"//:windows"
:
[
"-DGTEST_USE_OWN_TR1_TUPLE=0"
],
"//:windows_msvc"
:
[
"-DGTEST_USE_OWN_TR1_TUPLE=0"
],
"//:windows_msvc"
:
[
"-DGTEST_USE_OWN_TR1_TUPLE=0"
],
...
@@ -135,7 +148,6 @@ py_library(
...
@@ -135,7 +148,6 @@ py_library(
name
=
"gtest_test_utils"
,
name
=
"gtest_test_utils"
,
testonly
=
1
,
testonly
=
1
,
srcs
=
[
"gtest_test_utils.py"
],
srcs
=
[
"gtest_test_utils.py"
],
)
)
cc_binary
(
cc_binary
(
...
@@ -144,6 +156,7 @@ cc_binary(
...
@@ -144,6 +156,7 @@ cc_binary(
srcs
=
[
"gtest_help_test_.cc"
],
srcs
=
[
"gtest_help_test_.cc"
],
deps
=
[
"//:gtest_main"
],
deps
=
[
"//:gtest_main"
],
)
)
py_test
(
py_test
(
name
=
"gtest_help_test"
,
name
=
"gtest_help_test"
,
size
=
"small"
,
size
=
"small"
,
...
@@ -163,6 +176,10 @@ py_test(
...
@@ -163,6 +176,10 @@ py_test(
name
=
"gtest_output_test"
,
name
=
"gtest_output_test"
,
size
=
"small"
,
size
=
"small"
,
srcs
=
[
"gtest_output_test.py"
],
srcs
=
[
"gtest_output_test.py"
],
args
=
select
({
":has_absl"
:
[],
"//conditions:default"
:
[
"--no_stacktrace_support"
],
}),
data
=
[
data
=
[
"gtest_output_test_golden_lin.txt"
,
"gtest_output_test_golden_lin.txt"
,
":gtest_output_test_"
,
":gtest_output_test_"
,
...
@@ -176,6 +193,7 @@ cc_binary(
...
@@ -176,6 +193,7 @@ cc_binary(
srcs
=
[
"gtest_color_test_.cc"
],
srcs
=
[
"gtest_color_test_.cc"
],
deps
=
[
"//:gtest"
],
deps
=
[
"//:gtest"
],
)
)
py_test
(
py_test
(
name
=
"gtest_color_test"
,
name
=
"gtest_color_test"
,
size
=
"small"
,
size
=
"small"
,
...
@@ -327,6 +345,10 @@ py_test(
...
@@ -327,6 +345,10 @@ py_test(
"gtest_xml_output_unittest.py"
,
"gtest_xml_output_unittest.py"
,
"gtest_xml_test_utils.py"
,
"gtest_xml_test_utils.py"
,
],
],
args
=
select
({
":has_absl"
:
[],
"//conditions:default"
:
[
"--no_stacktrace_support"
],
}),
data
=
[
data
=
[
# We invoke gtest_no_test_unittest to verify the XML output
# We invoke gtest_no_test_unittest to verify the XML output
# when the test program contains no test definition.
# when the test program contains no test definition.
...
...
googletest/test/gtest_output_test.py
View file @
b4d4438d
...
@@ -52,6 +52,9 @@ import gtest_test_utils
...
@@ -52,6 +52,9 @@ import gtest_test_utils
GENGOLDEN_FLAG
=
'--gengolden'
GENGOLDEN_FLAG
=
'--gengolden'
CATCH_EXCEPTIONS_ENV_VAR_NAME
=
'GTEST_CATCH_EXCEPTIONS'
CATCH_EXCEPTIONS_ENV_VAR_NAME
=
'GTEST_CATCH_EXCEPTIONS'
# The flag indicating stacktraces are not supported
NO_STACKTRACE_SUPPORT_FLAG
=
'--no_stacktrace_support'
IS_LINUX
=
os
.
name
==
'posix'
and
os
.
uname
()[
0
]
==
'Linux'
IS_LINUX
=
os
.
name
==
'posix'
and
os
.
uname
()[
0
]
==
'Linux'
IS_WINDOWS
=
os
.
name
==
'nt'
IS_WINDOWS
=
os
.
name
==
'nt'
...
@@ -252,13 +255,12 @@ test_list = GetShellCommandOutput(COMMAND_LIST_TESTS)
...
@@ -252,13 +255,12 @@ test_list = GetShellCommandOutput(COMMAND_LIST_TESTS)
SUPPORTS_DEATH_TESTS
=
'DeathTest'
in
test_list
SUPPORTS_DEATH_TESTS
=
'DeathTest'
in
test_list
SUPPORTS_TYPED_TESTS
=
'TypedTest'
in
test_list
SUPPORTS_TYPED_TESTS
=
'TypedTest'
in
test_list
SUPPORTS_THREADS
=
'ExpectFailureWithThreadsTest'
in
test_list
SUPPORTS_THREADS
=
'ExpectFailureWithThreadsTest'
in
test_list
SUPPORTS_STACK_TRACES
=
IS_LINUX
SUPPORTS_STACK_TRACES
=
NO_STACKTRACE_SUPPORT_FLAG
not
in
sys
.
argv
CAN_GENERATE_GOLDEN_FILE
=
(
SUPPORTS_DEATH_TESTS
and
CAN_GENERATE_GOLDEN_FILE
=
(
SUPPORTS_DEATH_TESTS
and
SUPPORTS_TYPED_TESTS
and
SUPPORTS_TYPED_TESTS
and
SUPPORTS_THREADS
and
SUPPORTS_THREADS
and
SUPPORTS_STACK_TRACES
and
SUPPORTS_STACK_TRACES
)
not
IS_WINDOWS
)
class
GTestOutputTest
(
gtest_test_utils
.
TestCase
):
class
GTestOutputTest
(
gtest_test_utils
.
TestCase
):
def
RemoveUnsupportedTests
(
self
,
test_output
):
def
RemoveUnsupportedTests
(
self
,
test_output
):
...
@@ -325,7 +327,11 @@ class GTestOutputTest(gtest_test_utils.TestCase):
...
@@ -325,7 +327,11 @@ class GTestOutputTest(gtest_test_utils.TestCase):
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
if
sys
.
argv
[
1
:]
==
[
GENGOLDEN_FLAG
]:
if
NO_STACKTRACE_SUPPORT_FLAG
in
sys
.
argv
:
# unittest.main() can't handle unknown flags
sys
.
argv
.
remove
(
NO_STACKTRACE_SUPPORT_FLAG
)
if
GENGOLDEN_FLAG
in
sys
.
argv
:
if
CAN_GENERATE_GOLDEN_FILE
:
if
CAN_GENERATE_GOLDEN_FILE
:
output
=
GetOutputOfAllCommands
()
output
=
GetOutputOfAllCommands
()
golden_file
=
open
(
GOLDEN_PATH
,
'wb'
)
golden_file
=
open
(
GOLDEN_PATH
,
'wb'
)
...
...
googletest/test/gtest_output_test_golden_lin.txt
View file @
b4d4438d
...
@@ -4,10 +4,14 @@ gtest_output_test_.cc:#: Failure
...
@@ -4,10 +4,14 @@ gtest_output_test_.cc:#: Failure
Value of: false
Value of: false
Actual: false
Actual: false
Expected: true
Expected: true
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Expected equality of these values:
Expected equality of these values:
2
2
3
3
Stack trace: (omitted)
[0;32m[==========] [mRunning 68 tests from 30 test cases.
[0;32m[==========] [mRunning 68 tests from 30 test cases.
[0;32m[----------] [mGlobal test environment set-up.
[0;32m[----------] [mGlobal test environment set-up.
FooEnvironment::SetUp() called.
FooEnvironment::SetUp() called.
...
@@ -40,12 +44,16 @@ Expected equality of these values:
...
@@ -40,12 +44,16 @@ Expected equality of these values:
Which is: "\"Line"
Which is: "\"Line"
actual
actual
Which is: "actual \"string\""
Which is: "actual \"string\""
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Expected equality of these values:
Expected equality of these values:
golden
golden
Which is: "\"Line"
Which is: "\"Line"
actual
actual
Which is: "actual \"string\""
Which is: "actual \"string\""
Stack trace: (omitted)
[0;31m[ FAILED ] [mNonfatalFailureTest.EscapesStringOperands
[0;31m[ FAILED ] [mNonfatalFailureTest.EscapesStringOperands
[0;32m[ RUN ] [mNonfatalFailureTest.DiffForLongStrings
[0;32m[ RUN ] [mNonfatalFailureTest.DiffForLongStrings
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
...
@@ -58,6 +66,8 @@ With diff:
...
@@ -58,6 +66,8 @@ With diff:
-\"Line\0 1\"
-\"Line\0 1\"
Line 2
Line 2
Stack trace: (omitted)
[0;31m[ FAILED ] [mNonfatalFailureTest.DiffForLongStrings
[0;31m[ FAILED ] [mNonfatalFailureTest.DiffForLongStrings
[0;32m[----------] [m3 tests from FatalFailureTest
[0;32m[----------] [m3 tests from FatalFailureTest
[0;32m[ RUN ] [mFatalFailureTest.FatalFailureInSubroutine
[0;32m[ RUN ] [mFatalFailureTest.FatalFailureInSubroutine
...
@@ -67,6 +77,8 @@ Expected equality of these values:
...
@@ -67,6 +77,8 @@ Expected equality of these values:
1
1
x
x
Which is: 2
Which is: 2
Stack trace: (omitted)
[0;31m[ FAILED ] [mFatalFailureTest.FatalFailureInSubroutine
[0;31m[ FAILED ] [mFatalFailureTest.FatalFailureInSubroutine
[0;32m[ RUN ] [mFatalFailureTest.FatalFailureInNestedSubroutine
[0;32m[ RUN ] [mFatalFailureTest.FatalFailureInNestedSubroutine
(expecting a failure that x should be 1)
(expecting a failure that x should be 1)
...
@@ -75,6 +87,8 @@ Expected equality of these values:
...
@@ -75,6 +87,8 @@ Expected equality of these values:
1
1
x
x
Which is: 2
Which is: 2
Stack trace: (omitted)
[0;31m[ FAILED ] [mFatalFailureTest.FatalFailureInNestedSubroutine
[0;31m[ FAILED ] [mFatalFailureTest.FatalFailureInNestedSubroutine
[0;32m[ RUN ] [mFatalFailureTest.NonfatalFailureInSubroutine
[0;32m[ RUN ] [mFatalFailureTest.NonfatalFailureInSubroutine
(expecting a failure on false)
(expecting a failure on false)
...
@@ -82,6 +96,8 @@ gtest_output_test_.cc:#: Failure
...
@@ -82,6 +96,8 @@ gtest_output_test_.cc:#: Failure
Value of: false
Value of: false
Actual: false
Actual: false
Expected: true
Expected: true
Stack trace: (omitted)
[0;31m[ FAILED ] [mFatalFailureTest.NonfatalFailureInSubroutine
[0;31m[ FAILED ] [mFatalFailureTest.NonfatalFailureInSubroutine
[0;32m[----------] [m1 test from LoggingTest
[0;32m[----------] [m1 test from LoggingTest
[0;32m[ RUN ] [mLoggingTest.InterleavingLoggingAndAssertions
[0;32m[ RUN ] [mLoggingTest.InterleavingLoggingAndAssertions
...
@@ -90,10 +106,14 @@ i == 0
...
@@ -90,10 +106,14 @@ i == 0
i == 1
i == 1
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Expected: (3) >= (a[i]), actual: 3 vs 9
Expected: (3) >= (a[i]), actual: 3 vs 9
Stack trace: (omitted)
i == 2
i == 2
i == 3
i == 3
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Expected: (3) >= (a[i]), actual: 3 vs 6
Expected: (3) >= (a[i]), actual: 3 vs 6
Stack trace: (omitted)
[0;31m[ FAILED ] [mLoggingTest.InterleavingLoggingAndAssertions
[0;31m[ FAILED ] [mLoggingTest.InterleavingLoggingAndAssertions
[0;32m[----------] [m7 tests from SCOPED_TRACETest
[0;32m[----------] [m7 tests from SCOPED_TRACETest
[0;32m[ RUN ] [mSCOPED_TRACETest.AcceptedValues
[0;32m[ RUN ] [mSCOPED_TRACETest.AcceptedValues
...
@@ -105,20 +125,28 @@ gtest_output_test_.cc:#: (null)
...
@@ -105,20 +125,28 @@ gtest_output_test_.cc:#: (null)
gtest_output_test_.cc:#: 1337
gtest_output_test_.cc:#: 1337
gtest_output_test_.cc:#: std::string
gtest_output_test_.cc:#: std::string
gtest_output_test_.cc:#: literal string
gtest_output_test_.cc:#: literal string
Stack trace: (omitted)
[0;31m[ FAILED ] [mSCOPED_TRACETest.AcceptedValues
[0;31m[ FAILED ] [mSCOPED_TRACETest.AcceptedValues
[0;32m[ RUN ] [mSCOPED_TRACETest.ObeysScopes
[0;32m[ RUN ] [mSCOPED_TRACETest.ObeysScopes
(expected to fail)
(expected to fail)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
This failure is expected, and shouldn't have a trace.
This failure is expected, and shouldn't have a trace.
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
This failure is expected, and should have a trace.
This failure is expected, and should have a trace.
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: Expected trace
gtest_output_test_.cc:#: Expected trace
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
This failure is expected, and shouldn't have a trace.
This failure is expected, and shouldn't have a trace.
Stack trace: (omitted)
[0;31m[ FAILED ] [mSCOPED_TRACETest.ObeysScopes
[0;31m[ FAILED ] [mSCOPED_TRACETest.ObeysScopes
[0;32m[ RUN ] [mSCOPED_TRACETest.WorksInLoop
[0;32m[ RUN ] [mSCOPED_TRACETest.WorksInLoop
(expected to fail)
(expected to fail)
...
@@ -129,6 +157,8 @@ Expected equality of these values:
...
@@ -129,6 +157,8 @@ Expected equality of these values:
Which is: 1
Which is: 1
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: i = 1
gtest_output_test_.cc:#: i = 1
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Expected equality of these values:
Expected equality of these values:
1
1
...
@@ -136,6 +166,8 @@ Expected equality of these values:
...
@@ -136,6 +166,8 @@ Expected equality of these values:
Which is: 2
Which is: 2
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: i = 2
gtest_output_test_.cc:#: i = 2
Stack trace: (omitted)
[0;31m[ FAILED ] [mSCOPED_TRACETest.WorksInLoop
[0;31m[ FAILED ] [mSCOPED_TRACETest.WorksInLoop
[0;32m[ RUN ] [mSCOPED_TRACETest.WorksInSubroutine
[0;32m[ RUN ] [mSCOPED_TRACETest.WorksInSubroutine
(expected to fail)
(expected to fail)
...
@@ -146,6 +178,8 @@ Expected equality of these values:
...
@@ -146,6 +178,8 @@ Expected equality of these values:
Which is: 1
Which is: 1
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: n = 1
gtest_output_test_.cc:#: n = 1
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Expected equality of these values:
Expected equality of these values:
1
1
...
@@ -153,6 +187,8 @@ Expected equality of these values:
...
@@ -153,6 +187,8 @@ Expected equality of these values:
Which is: 2
Which is: 2
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: n = 2
gtest_output_test_.cc:#: n = 2
Stack trace: (omitted)
[0;31m[ FAILED ] [mSCOPED_TRACETest.WorksInSubroutine
[0;31m[ FAILED ] [mSCOPED_TRACETest.WorksInSubroutine
[0;32m[ RUN ] [mSCOPED_TRACETest.CanBeNested
[0;32m[ RUN ] [mSCOPED_TRACETest.CanBeNested
(expected to fail)
(expected to fail)
...
@@ -164,6 +200,8 @@ Expected equality of these values:
...
@@ -164,6 +200,8 @@ Expected equality of these values:
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: n = 2
gtest_output_test_.cc:#: n = 2
gtest_output_test_.cc:#:
gtest_output_test_.cc:#:
Stack trace: (omitted)
[0;31m[ FAILED ] [mSCOPED_TRACETest.CanBeNested
[0;31m[ FAILED ] [mSCOPED_TRACETest.CanBeNested
[0;32m[ RUN ] [mSCOPED_TRACETest.CanBeRepeated
[0;32m[ RUN ] [mSCOPED_TRACETest.CanBeRepeated
(expected to fail)
(expected to fail)
...
@@ -172,12 +210,16 @@ Failed
...
@@ -172,12 +210,16 @@ Failed
This failure is expected, and should contain trace point A.
This failure is expected, and should contain trace point A.
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: A
gtest_output_test_.cc:#: A
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
This failure is expected, and should contain trace point A and B.
This failure is expected, and should contain trace point A and B.
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: B
gtest_output_test_.cc:#: B
gtest_output_test_.cc:#: A
gtest_output_test_.cc:#: A
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
This failure is expected, and should contain trace point A, B, and C.
This failure is expected, and should contain trace point A, B, and C.
...
@@ -185,6 +227,8 @@ Google Test trace:
...
@@ -185,6 +227,8 @@ Google Test trace:
gtest_output_test_.cc:#: C
gtest_output_test_.cc:#: C
gtest_output_test_.cc:#: B
gtest_output_test_.cc:#: B
gtest_output_test_.cc:#: A
gtest_output_test_.cc:#: A
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
This failure is expected, and should contain trace point A, B, and D.
This failure is expected, and should contain trace point A, B, and D.
...
@@ -192,6 +236,8 @@ Google Test trace:
...
@@ -192,6 +236,8 @@ Google Test trace:
gtest_output_test_.cc:#: D
gtest_output_test_.cc:#: D
gtest_output_test_.cc:#: B
gtest_output_test_.cc:#: B
gtest_output_test_.cc:#: A
gtest_output_test_.cc:#: A
Stack trace: (omitted)
[0;31m[ FAILED ] [mSCOPED_TRACETest.CanBeRepeated
[0;31m[ FAILED ] [mSCOPED_TRACETest.CanBeRepeated
[0;32m[ RUN ] [mSCOPED_TRACETest.WorksConcurrently
[0;32m[ RUN ] [mSCOPED_TRACETest.WorksConcurrently
(expecting 6 failures)
(expecting 6 failures)
...
@@ -200,27 +246,39 @@ Failed
...
@@ -200,27 +246,39 @@ Failed
Expected failure #1 (in thread B, only trace B alive).
Expected failure #1 (in thread B, only trace B alive).
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: Trace B
gtest_output_test_.cc:#: Trace B
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #2 (in thread A, trace A & B both alive).
Expected failure #2 (in thread A, trace A & B both alive).
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: Trace A
gtest_output_test_.cc:#: Trace A
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #3 (in thread B, trace A & B both alive).
Expected failure #3 (in thread B, trace A & B both alive).
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: Trace B
gtest_output_test_.cc:#: Trace B
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #4 (in thread B, only trace A alive).
Expected failure #4 (in thread B, only trace A alive).
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #5 (in thread A, only trace A alive).
Expected failure #5 (in thread A, only trace A alive).
Google Test trace:
Google Test trace:
gtest_output_test_.cc:#: Trace A
gtest_output_test_.cc:#: Trace A
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #6 (in thread A, no trace alive).
Expected failure #6 (in thread A, no trace alive).
Stack trace: (omitted)
[0;31m[ FAILED ] [mSCOPED_TRACETest.WorksConcurrently
[0;31m[ FAILED ] [mSCOPED_TRACETest.WorksConcurrently
[0;32m[----------] [m1 test from ScopedTraceTest
[0;32m[----------] [m1 test from ScopedTraceTest
[0;32m[ RUN ] [mScopedTraceTest.WithExplicitFileAndLine
[0;32m[ RUN ] [mScopedTraceTest.WithExplicitFileAndLine
...
@@ -229,6 +287,8 @@ Failed
...
@@ -229,6 +287,8 @@ Failed
Check that the trace is attached to a particular location.
Check that the trace is attached to a particular location.
Google Test trace:
Google Test trace:
explicit_file.cc:123: expected trace message
explicit_file.cc:123: expected trace message
Stack trace: (omitted)
[0;31m[ FAILED ] [mScopedTraceTest.WithExplicitFileAndLine
[0;31m[ FAILED ] [mScopedTraceTest.WithExplicitFileAndLine
[0;32m[----------] [m1 test from NonFatalFailureInFixtureConstructorTest
[0;32m[----------] [m1 test from NonFatalFailureInFixtureConstructorTest
[0;32m[ RUN ] [mNonFatalFailureInFixtureConstructorTest.FailureInConstructor
[0;32m[ RUN ] [mNonFatalFailureInFixtureConstructorTest.FailureInConstructor
...
@@ -236,18 +296,28 @@ explicit_file.cc:123: expected trace message
...
@@ -236,18 +296,28 @@ explicit_file.cc:123: expected trace message
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #1, in the test fixture c'tor.
Expected failure #1, in the test fixture c'tor.
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #2, in SetUp().
Expected failure #2, in SetUp().
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #3, in the test body.
Expected failure #3, in the test body.
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #4, in TearDown.
Expected failure #4, in TearDown.
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #5, in the test fixture d'tor.
Expected failure #5, in the test fixture d'tor.
Stack trace: (omitted)
[0;31m[ FAILED ] [mNonFatalFailureInFixtureConstructorTest.FailureInConstructor
[0;31m[ FAILED ] [mNonFatalFailureInFixtureConstructorTest.FailureInConstructor
[0;32m[----------] [m1 test from FatalFailureInFixtureConstructorTest
[0;32m[----------] [m1 test from FatalFailureInFixtureConstructorTest
[0;32m[ RUN ] [mFatalFailureInFixtureConstructorTest.FailureInConstructor
[0;32m[ RUN ] [mFatalFailureInFixtureConstructorTest.FailureInConstructor
...
@@ -255,9 +325,13 @@ Expected failure #5, in the test fixture d'tor.
...
@@ -255,9 +325,13 @@ Expected failure #5, in the test fixture d'tor.
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #1, in the test fixture c'tor.
Expected failure #1, in the test fixture c'tor.
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #2, in the test fixture d'tor.
Expected failure #2, in the test fixture d'tor.
Stack trace: (omitted)
[0;31m[ FAILED ] [mFatalFailureInFixtureConstructorTest.FailureInConstructor
[0;31m[ FAILED ] [mFatalFailureInFixtureConstructorTest.FailureInConstructor
[0;32m[----------] [m1 test from NonFatalFailureInSetUpTest
[0;32m[----------] [m1 test from NonFatalFailureInSetUpTest
[0;32m[ RUN ] [mNonFatalFailureInSetUpTest.FailureInSetUp
[0;32m[ RUN ] [mNonFatalFailureInSetUpTest.FailureInSetUp
...
@@ -265,15 +339,23 @@ Expected failure #2, in the test fixture d'tor.
...
@@ -265,15 +339,23 @@ Expected failure #2, in the test fixture d'tor.
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #1, in SetUp().
Expected failure #1, in SetUp().
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #2, in the test function.
Expected failure #2, in the test function.
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #3, in TearDown().
Expected failure #3, in TearDown().
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #4, in the test fixture d'tor.
Expected failure #4, in the test fixture d'tor.
Stack trace: (omitted)
[0;31m[ FAILED ] [mNonFatalFailureInSetUpTest.FailureInSetUp
[0;31m[ FAILED ] [mNonFatalFailureInSetUpTest.FailureInSetUp
[0;32m[----------] [m1 test from FatalFailureInSetUpTest
[0;32m[----------] [m1 test from FatalFailureInSetUpTest
[0;32m[ RUN ] [mFatalFailureInSetUpTest.FailureInSetUp
[0;32m[ RUN ] [mFatalFailureInSetUpTest.FailureInSetUp
...
@@ -281,18 +363,26 @@ Expected failure #4, in the test fixture d'tor.
...
@@ -281,18 +363,26 @@ Expected failure #4, in the test fixture d'tor.
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #1, in SetUp().
Expected failure #1, in SetUp().
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #2, in TearDown().
Expected failure #2, in TearDown().
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected failure #3, in the test fixture d'tor.
Expected failure #3, in the test fixture d'tor.
Stack trace: (omitted)
[0;31m[ FAILED ] [mFatalFailureInSetUpTest.FailureInSetUp
[0;31m[ FAILED ] [mFatalFailureInSetUpTest.FailureInSetUp
[0;32m[----------] [m1 test from AddFailureAtTest
[0;32m[----------] [m1 test from AddFailureAtTest
[0;32m[ RUN ] [mAddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber
[0;32m[ RUN ] [mAddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber
foo.cc:42: Failure
foo.cc:42: Failure
Failed
Failed
Expected failure in foo.cc
Expected failure in foo.cc
Stack trace: (omitted)
[0;31m[ FAILED ] [mAddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber
[0;31m[ FAILED ] [mAddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber
[0;32m[----------] [m4 tests from MixedUpTestCaseTest
[0;32m[----------] [m4 tests from MixedUpTestCaseTest
[0;32m[ RUN ] [mMixedUpTestCaseTest.FirstTestFromNamespaceFoo
[0;32m[ RUN ] [mMixedUpTestCaseTest.FirstTestFromNamespaceFoo
...
@@ -309,6 +399,8 @@ using two different test fixture classes. This can happen if
...
@@ -309,6 +399,8 @@ using two different test fixture classes. This can happen if
the two classes are from different namespaces or translation
the two classes are from different namespaces or translation
units and have the same name. You should probably rename one
units and have the same name. You should probably rename one
of the classes to put the tests into different test cases.
of the classes to put the tests into different test cases.
Stack trace: (omitted)
[0;31m[ FAILED ] [mMixedUpTestCaseTest.ThisShouldFail
[0;31m[ FAILED ] [mMixedUpTestCaseTest.ThisShouldFail
[0;32m[ RUN ] [mMixedUpTestCaseTest.ThisShouldFailToo
[0;32m[ RUN ] [mMixedUpTestCaseTest.ThisShouldFailToo
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -320,6 +412,8 @@ using two different test fixture classes. This can happen if
...
@@ -320,6 +412,8 @@ using two different test fixture classes. This can happen if
the two classes are from different namespaces or translation
the two classes are from different namespaces or translation
units and have the same name. You should probably rename one
units and have the same name. You should probably rename one
of the classes to put the tests into different test cases.
of the classes to put the tests into different test cases.
Stack trace: (omitted)
[0;31m[ FAILED ] [mMixedUpTestCaseTest.ThisShouldFailToo
[0;31m[ FAILED ] [mMixedUpTestCaseTest.ThisShouldFailToo
[0;32m[----------] [m2 tests from MixedUpTestCaseWithSameTestNameTest
[0;32m[----------] [m2 tests from MixedUpTestCaseWithSameTestNameTest
[0;32m[ RUN ] [mMixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
[0;32m[ RUN ] [mMixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
...
@@ -334,6 +428,8 @@ using two different test fixture classes. This can happen if
...
@@ -334,6 +428,8 @@ using two different test fixture classes. This can happen if
the two classes are from different namespaces or translation
the two classes are from different namespaces or translation
units and have the same name. You should probably rename one
units and have the same name. You should probably rename one
of the classes to put the tests into different test cases.
of the classes to put the tests into different test cases.
Stack trace: (omitted)
[0;31m[ FAILED ] [mMixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
[0;31m[ FAILED ] [mMixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
[0;32m[----------] [m2 tests from TEST_F_before_TEST_in_same_test_case
[0;32m[----------] [m2 tests from TEST_F_before_TEST_in_same_test_case
[0;32m[ RUN ] [mTEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F
[0;32m[ RUN ] [mTEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F
...
@@ -348,6 +444,8 @@ test DefinedUsingTEST_F is defined using TEST_F but
...
@@ -348,6 +444,8 @@ test DefinedUsingTEST_F is defined using TEST_F but
test DefinedUsingTESTAndShouldFail is defined using TEST. You probably
test DefinedUsingTESTAndShouldFail is defined using TEST. You probably
want to change the TEST to TEST_F or move it to another test
want to change the TEST to TEST_F or move it to another test
case.
case.
Stack trace: (omitted)
[0;31m[ FAILED ] [mTEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail
[0;31m[ FAILED ] [mTEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail
[0;32m[----------] [m2 tests from TEST_before_TEST_F_in_same_test_case
[0;32m[----------] [m2 tests from TEST_before_TEST_F_in_same_test_case
[0;32m[ RUN ] [mTEST_before_TEST_F_in_same_test_case.DefinedUsingTEST
[0;32m[ RUN ] [mTEST_before_TEST_F_in_same_test_case.DefinedUsingTEST
...
@@ -362,6 +460,8 @@ test DefinedUsingTEST_FAndShouldFail is defined using TEST_F but
...
@@ -362,6 +460,8 @@ test DefinedUsingTEST_FAndShouldFail is defined using TEST_F but
test DefinedUsingTEST is defined using TEST. You probably
test DefinedUsingTEST is defined using TEST. You probably
want to change the TEST to TEST_F or move it to another test
want to change the TEST to TEST_F or move it to another test
case.
case.
Stack trace: (omitted)
[0;31m[ FAILED ] [mTEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail
[0;31m[ FAILED ] [mTEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail
[0;32m[----------] [m8 tests from ExpectNonfatalFailureTest
[0;32m[----------] [m8 tests from ExpectNonfatalFailureTest
[0;32m[ RUN ] [mExpectNonfatalFailureTest.CanReferenceGlobalVariables
[0;32m[ RUN ] [mExpectNonfatalFailureTest.CanReferenceGlobalVariables
...
@@ -375,6 +475,8 @@ case.
...
@@ -375,6 +475,8 @@ case.
gtest.cc:#: Failure
gtest.cc:#: Failure
Expected: 1 non-fatal failure
Expected: 1 non-fatal failure
Actual: 0 failures
Actual: 0 failures
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure
[0;32m[ RUN ] [mExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures
[0;32m[ RUN ] [mExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures
(expecting a failure)
(expecting a failure)
...
@@ -384,10 +486,16 @@ Expected: 1 non-fatal failure
...
@@ -384,10 +486,16 @@ Expected: 1 non-fatal failure
gtest_output_test_.cc:#: Non-fatal failure:
gtest_output_test_.cc:#: Non-fatal failure:
Failed
Failed
Expected non-fatal failure 1.
Expected non-fatal failure 1.
Stack trace: (omitted)
gtest_output_test_.cc:#: Non-fatal failure:
gtest_output_test_.cc:#: Non-fatal failure:
Failed
Failed
Expected non-fatal failure 2.
Expected non-fatal failure 2.
Stack trace: (omitted)
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures
[0;32m[ RUN ] [mExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure
[0;32m[ RUN ] [mExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure
...
@@ -398,6 +506,10 @@ Expected: 1 non-fatal failure
...
@@ -398,6 +506,10 @@ Expected: 1 non-fatal failure
gtest_output_test_.cc:#: Fatal failure:
gtest_output_test_.cc:#: Fatal failure:
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure
[0;32m[ RUN ] [mExpectNonfatalFailureTest.FailsWhenStatementReturns
[0;32m[ RUN ] [mExpectNonfatalFailureTest.FailsWhenStatementReturns
...
@@ -405,12 +517,16 @@ Expected fatal failure.
...
@@ -405,12 +517,16 @@ Expected fatal failure.
gtest.cc:#: Failure
gtest.cc:#: Failure
Expected: 1 non-fatal failure
Expected: 1 non-fatal failure
Actual: 0 failures
Actual: 0 failures
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenStatementReturns
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenStatementReturns
[0;32m[ RUN ] [mExpectNonfatalFailureTest.FailsWhenStatementThrows
[0;32m[ RUN ] [mExpectNonfatalFailureTest.FailsWhenStatementThrows
(expecting a failure)
(expecting a failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
Expected: 1 non-fatal failure
Expected: 1 non-fatal failure
Actual: 0 failures
Actual: 0 failures
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenStatementThrows
[0;31m[ FAILED ] [mExpectNonfatalFailureTest.FailsWhenStatementThrows
[0;32m[----------] [m8 tests from ExpectFatalFailureTest
[0;32m[----------] [m8 tests from ExpectFatalFailureTest
[0;32m[ RUN ] [mExpectFatalFailureTest.CanReferenceGlobalVariables
[0;32m[ RUN ] [mExpectFatalFailureTest.CanReferenceGlobalVariables
...
@@ -424,6 +540,8 @@ Expected: 1 non-fatal failure
...
@@ -424,6 +540,8 @@ Expected: 1 non-fatal failure
gtest.cc:#: Failure
gtest.cc:#: Failure
Expected: 1 fatal failure
Expected: 1 fatal failure
Actual: 0 failures
Actual: 0 failures
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure
[0;32m[ RUN ] [mExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures
[0;32m[ RUN ] [mExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures
(expecting a failure)
(expecting a failure)
...
@@ -433,10 +551,16 @@ Expected: 1 fatal failure
...
@@ -433,10 +551,16 @@ Expected: 1 fatal failure
gtest_output_test_.cc:#: Fatal failure:
gtest_output_test_.cc:#: Fatal failure:
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
gtest_output_test_.cc:#: Fatal failure:
gtest_output_test_.cc:#: Fatal failure:
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures
[0;32m[ RUN ] [mExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure
[0;32m[ RUN ] [mExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure
...
@@ -447,6 +571,10 @@ Expected: 1 fatal failure
...
@@ -447,6 +571,10 @@ Expected: 1 fatal failure
gtest_output_test_.cc:#: Non-fatal failure:
gtest_output_test_.cc:#: Non-fatal failure:
Failed
Failed
Expected non-fatal failure.
Expected non-fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure
[0;32m[ RUN ] [mExpectFatalFailureTest.FailsWhenStatementReturns
[0;32m[ RUN ] [mExpectFatalFailureTest.FailsWhenStatementReturns
...
@@ -454,12 +582,16 @@ Expected non-fatal failure.
...
@@ -454,12 +582,16 @@ Expected non-fatal failure.
gtest.cc:#: Failure
gtest.cc:#: Failure
Expected: 1 fatal failure
Expected: 1 fatal failure
Actual: 0 failures
Actual: 0 failures
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenStatementReturns
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenStatementReturns
[0;32m[ RUN ] [mExpectFatalFailureTest.FailsWhenStatementThrows
[0;32m[ RUN ] [mExpectFatalFailureTest.FailsWhenStatementThrows
(expecting a failure)
(expecting a failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
Expected: 1 fatal failure
Expected: 1 fatal failure
Actual: 0 failures
Actual: 0 failures
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenStatementThrows
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenStatementThrows
[0;32m[----------] [m2 tests from TypedTest/0, where TypeParam = int
[0;32m[----------] [m2 tests from TypedTest/0, where TypeParam = int
[0;32m[ RUN ] [mTypedTest/0.Success
[0;32m[ RUN ] [mTypedTest/0.Success
...
@@ -471,6 +603,8 @@ Expected equality of these values:
...
@@ -471,6 +603,8 @@ Expected equality of these values:
TypeParam()
TypeParam()
Which is: 0
Which is: 0
Expected failure
Expected failure
Stack trace: (omitted)
[0;31m[ FAILED ] [mTypedTest/0.Failure, where TypeParam = int
[0;31m[ FAILED ] [mTypedTest/0.Failure, where TypeParam = int
[0;32m[----------] [m2 tests from Unsigned/TypedTestP/0, where TypeParam = unsigned char
[0;32m[----------] [m2 tests from Unsigned/TypedTestP/0, where TypeParam = unsigned char
[0;32m[ RUN ] [mUnsigned/TypedTestP/0.Success
[0;32m[ RUN ] [mUnsigned/TypedTestP/0.Success
...
@@ -483,8 +617,10 @@ Expected equality of these values:
...
@@ -483,8 +617,10 @@ Expected equality of these values:
TypeParam()
TypeParam()
Which is: '\0'
Which is: '\0'
Expected failure
Expected failure
Stack trace: (omitted)
[0;31m[ FAILED ] [mUnsigned/TypedTestP/0.Failure, where TypeParam = unsigned char
[0;31m[ FAILED ] [mUnsigned/TypedTestP/0.Failure, where TypeParam = unsigned char
[0;32m[----------] [m2 tests from Unsigned/TypedTestP/1, where TypeParam = unsigned
[0;32m[----------] [m2 tests from Unsigned/TypedTestP/1, where TypeParam = unsigned
int
[0;32m[ RUN ] [mUnsigned/TypedTestP/1.Success
[0;32m[ RUN ] [mUnsigned/TypedTestP/1.Success
[0;32m[ OK ] [mUnsigned/TypedTestP/1.Success
[0;32m[ OK ] [mUnsigned/TypedTestP/1.Success
[0;32m[ RUN ] [mUnsigned/TypedTestP/1.Failure
[0;32m[ RUN ] [mUnsigned/TypedTestP/1.Failure
...
@@ -495,7 +631,9 @@ Expected equality of these values:
...
@@ -495,7 +631,9 @@ Expected equality of these values:
TypeParam()
TypeParam()
Which is: 0
Which is: 0
Expected failure
Expected failure
[0;31m[ FAILED ] [mUnsigned/TypedTestP/1.Failure, where TypeParam = unsigned
Stack trace: (omitted)
[0;31m[ FAILED ] [mUnsigned/TypedTestP/1.Failure, where TypeParam = unsigned int
[0;32m[----------] [m4 tests from ExpectFailureTest
[0;32m[----------] [m4 tests from ExpectFailureTest
[0;32m[ RUN ] [mExpectFailureTest.ExpectFatalFailure
[0;32m[ RUN ] [mExpectFailureTest.ExpectFatalFailure
(expecting 1 failure)
(expecting 1 failure)
...
@@ -504,6 +642,10 @@ Expected: 1 fatal failure
...
@@ -504,6 +642,10 @@ Expected: 1 fatal failure
Actual:
Actual:
gtest_output_test_.cc:#: Success:
gtest_output_test_.cc:#: Success:
Succeeded
Succeeded
Stack trace: (omitted)
Stack trace: (omitted)
(expecting 1 failure)
(expecting 1 failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -512,6 +654,10 @@ Expected: 1 fatal failure
...
@@ -512,6 +654,10 @@ Expected: 1 fatal failure
gtest_output_test_.cc:#: Non-fatal failure:
gtest_output_test_.cc:#: Non-fatal failure:
Failed
Failed
Expected non-fatal failure.
Expected non-fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
(expecting 1 failure)
(expecting 1 failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -520,6 +666,10 @@ Expected: 1 fatal failure containing "Some other fatal failure expected."
...
@@ -520,6 +666,10 @@ Expected: 1 fatal failure containing "Some other fatal failure expected."
gtest_output_test_.cc:#: Fatal failure:
gtest_output_test_.cc:#: Fatal failure:
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFailureTest.ExpectFatalFailure
[0;31m[ FAILED ] [mExpectFailureTest.ExpectFatalFailure
[0;32m[ RUN ] [mExpectFailureTest.ExpectNonFatalFailure
[0;32m[ RUN ] [mExpectFailureTest.ExpectNonFatalFailure
...
@@ -529,6 +679,10 @@ Expected: 1 non-fatal failure
...
@@ -529,6 +679,10 @@ Expected: 1 non-fatal failure
Actual:
Actual:
gtest_output_test_.cc:#: Success:
gtest_output_test_.cc:#: Success:
Succeeded
Succeeded
Stack trace: (omitted)
Stack trace: (omitted)
(expecting 1 failure)
(expecting 1 failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -537,6 +691,10 @@ Expected: 1 non-fatal failure
...
@@ -537,6 +691,10 @@ Expected: 1 non-fatal failure
gtest_output_test_.cc:#: Fatal failure:
gtest_output_test_.cc:#: Fatal failure:
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
(expecting 1 failure)
(expecting 1 failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -545,6 +703,10 @@ Expected: 1 non-fatal failure containing "Some other non-fatal failure."
...
@@ -545,6 +703,10 @@ Expected: 1 non-fatal failure containing "Some other non-fatal failure."
gtest_output_test_.cc:#: Non-fatal failure:
gtest_output_test_.cc:#: Non-fatal failure:
Failed
Failed
Expected non-fatal failure.
Expected non-fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFailureTest.ExpectNonFatalFailure
[0;31m[ FAILED ] [mExpectFailureTest.ExpectNonFatalFailure
[0;32m[ RUN ] [mExpectFailureTest.ExpectFatalFailureOnAllThreads
[0;32m[ RUN ] [mExpectFailureTest.ExpectFatalFailureOnAllThreads
...
@@ -554,6 +716,10 @@ Expected: 1 fatal failure
...
@@ -554,6 +716,10 @@ Expected: 1 fatal failure
Actual:
Actual:
gtest_output_test_.cc:#: Success:
gtest_output_test_.cc:#: Success:
Succeeded
Succeeded
Stack trace: (omitted)
Stack trace: (omitted)
(expecting 1 failure)
(expecting 1 failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -562,6 +728,10 @@ Expected: 1 fatal failure
...
@@ -562,6 +728,10 @@ Expected: 1 fatal failure
gtest_output_test_.cc:#: Non-fatal failure:
gtest_output_test_.cc:#: Non-fatal failure:
Failed
Failed
Expected non-fatal failure.
Expected non-fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
(expecting 1 failure)
(expecting 1 failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -570,6 +740,10 @@ Expected: 1 fatal failure containing "Some other fatal failure expected."
...
@@ -570,6 +740,10 @@ Expected: 1 fatal failure containing "Some other fatal failure expected."
gtest_output_test_.cc:#: Fatal failure:
gtest_output_test_.cc:#: Fatal failure:
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFailureTest.ExpectFatalFailureOnAllThreads
[0;31m[ FAILED ] [mExpectFailureTest.ExpectFatalFailureOnAllThreads
[0;32m[ RUN ] [mExpectFailureTest.ExpectNonFatalFailureOnAllThreads
[0;32m[ RUN ] [mExpectFailureTest.ExpectNonFatalFailureOnAllThreads
...
@@ -579,6 +753,10 @@ Expected: 1 non-fatal failure
...
@@ -579,6 +753,10 @@ Expected: 1 non-fatal failure
Actual:
Actual:
gtest_output_test_.cc:#: Success:
gtest_output_test_.cc:#: Success:
Succeeded
Succeeded
Stack trace: (omitted)
Stack trace: (omitted)
(expecting 1 failure)
(expecting 1 failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -587,6 +765,10 @@ Expected: 1 non-fatal failure
...
@@ -587,6 +765,10 @@ Expected: 1 non-fatal failure
gtest_output_test_.cc:#: Fatal failure:
gtest_output_test_.cc:#: Fatal failure:
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
(expecting 1 failure)
(expecting 1 failure)
gtest.cc:#: Failure
gtest.cc:#: Failure
...
@@ -595,6 +777,10 @@ Expected: 1 non-fatal failure containing "Some other non-fatal failure."
...
@@ -595,6 +777,10 @@ Expected: 1 non-fatal failure containing "Some other non-fatal failure."
gtest_output_test_.cc:#: Non-fatal failure:
gtest_output_test_.cc:#: Non-fatal failure:
Failed
Failed
Expected non-fatal failure.
Expected non-fatal failure.
Stack trace: (omitted)
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFailureTest.ExpectNonFatalFailureOnAllThreads
[0;31m[ FAILED ] [mExpectFailureTest.ExpectNonFatalFailureOnAllThreads
[0;32m[----------] [m2 tests from ExpectFailureWithThreadsTest
[0;32m[----------] [m2 tests from ExpectFailureWithThreadsTest
...
@@ -603,18 +789,26 @@ Expected non-fatal failure.
...
@@ -603,18 +789,26 @@ Expected non-fatal failure.
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
gtest.cc:#: Failure
gtest.cc:#: Failure
Expected: 1 fatal failure
Expected: 1 fatal failure
Actual: 0 failures
Actual: 0 failures
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFailureWithThreadsTest.ExpectFatalFailure
[0;31m[ FAILED ] [mExpectFailureWithThreadsTest.ExpectFatalFailure
[0;32m[ RUN ] [mExpectFailureWithThreadsTest.ExpectNonFatalFailure
[0;32m[ RUN ] [mExpectFailureWithThreadsTest.ExpectNonFatalFailure
(expecting 2 failures)
(expecting 2 failures)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected non-fatal failure.
Expected non-fatal failure.
Stack trace: (omitted)
gtest.cc:#: Failure
gtest.cc:#: Failure
Expected: 1 non-fatal failure
Expected: 1 non-fatal failure
Actual: 0 failures
Actual: 0 failures
Stack trace: (omitted)
[0;31m[ FAILED ] [mExpectFailureWithThreadsTest.ExpectNonFatalFailure
[0;31m[ FAILED ] [mExpectFailureWithThreadsTest.ExpectNonFatalFailure
[0;32m[----------] [m1 test from ScopedFakeTestPartResultReporterTest
[0;32m[----------] [m1 test from ScopedFakeTestPartResultReporterTest
[0;32m[ RUN ] [mScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread
[0;32m[ RUN ] [mScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread
...
@@ -622,9 +816,13 @@ Expected: 1 non-fatal failure
...
@@ -622,9 +816,13 @@ Expected: 1 non-fatal failure
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected non-fatal failure.
Expected non-fatal failure.
Stack trace: (omitted)
[0;31m[ FAILED ] [mScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread
[0;31m[ FAILED ] [mScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread
[0;32m[----------] [m1 test from PrintingFailingParams/FailingParamTest
[0;32m[----------] [m1 test from PrintingFailingParams/FailingParamTest
[0;32m[ RUN ] [mPrintingFailingParams/FailingParamTest.Fails/0
[0;32m[ RUN ] [mPrintingFailingParams/FailingParamTest.Fails/0
...
@@ -633,6 +831,8 @@ Expected equality of these values:
...
@@ -633,6 +831,8 @@ Expected equality of these values:
1
1
GetParam()
GetParam()
Which is: 2
Which is: 2
Stack trace: (omitted)
[0;31m[ FAILED ] [mPrintingFailingParams/FailingParamTest.Fails/0, where GetParam() = 2
[0;31m[ FAILED ] [mPrintingFailingParams/FailingParamTest.Fails/0, where GetParam() = 2
[0;32m[----------] [m2 tests from PrintingStrings/ParamTest
[0;32m[----------] [m2 tests from PrintingStrings/ParamTest
[0;32m[ RUN ] [mPrintingStrings/ParamTest.Success/a
[0;32m[ RUN ] [mPrintingStrings/ParamTest.Success/a
...
@@ -644,16 +844,22 @@ Expected equality of these values:
...
@@ -644,16 +844,22 @@ Expected equality of these values:
GetParam()
GetParam()
Which is: "a"
Which is: "a"
Expected failure
Expected failure
Stack trace: (omitted)
[0;31m[ FAILED ] [mPrintingStrings/ParamTest.Failure/a, where GetParam() = "a"
[0;31m[ FAILED ] [mPrintingStrings/ParamTest.Failure/a, where GetParam() = "a"
[0;32m[----------] [mGlobal test environment tear-down
[0;32m[----------] [mGlobal test environment tear-down
BarEnvironment::TearDown() called.
BarEnvironment::TearDown() called.
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected non-fatal failure.
Expected non-fatal failure.
Stack trace: (omitted)
FooEnvironment::TearDown() called.
FooEnvironment::TearDown() called.
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Failed
Failed
Expected fatal failure.
Expected fatal failure.
Stack trace: (omitted)
[0;32m[==========] [m68 tests from 30 test cases ran.
[0;32m[==========] [m68 tests from 30 test cases ran.
[0;32m[ PASSED ] [m22 tests.
[0;32m[ PASSED ] [m22 tests.
[0;31m[ FAILED ] [m46 tests, listed below:
[0;31m[ FAILED ] [m46 tests, listed below:
...
@@ -693,7 +899,7 @@ Expected fatal failure.
...
@@ -693,7 +899,7 @@ Expected fatal failure.
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenStatementThrows
[0;31m[ FAILED ] [mExpectFatalFailureTest.FailsWhenStatementThrows
[0;31m[ FAILED ] [mTypedTest/0.Failure, where TypeParam = int
[0;31m[ FAILED ] [mTypedTest/0.Failure, where TypeParam = int
[0;31m[ FAILED ] [mUnsigned/TypedTestP/0.Failure, where TypeParam = unsigned char
[0;31m[ FAILED ] [mUnsigned/TypedTestP/0.Failure, where TypeParam = unsigned char
[0;31m[ FAILED ] [mUnsigned/TypedTestP/1.Failure, where TypeParam = unsigned
[0;31m[ FAILED ] [mUnsigned/TypedTestP/1.Failure, where TypeParam = unsigned
int
[0;31m[ FAILED ] [mExpectFailureTest.ExpectFatalFailure
[0;31m[ FAILED ] [mExpectFailureTest.ExpectFatalFailure
[0;31m[ FAILED ] [mExpectFailureTest.ExpectNonFatalFailure
[0;31m[ FAILED ] [mExpectFailureTest.ExpectNonFatalFailure
[0;31m[ FAILED ] [mExpectFailureTest.ExpectFatalFailureOnAllThreads
[0;31m[ FAILED ] [mExpectFailureTest.ExpectFatalFailureOnAllThreads
...
@@ -718,6 +924,8 @@ Expected equality of these values:
...
@@ -718,6 +924,8 @@ Expected equality of these values:
1
1
x
x
Which is: 2
Which is: 2
Stack trace: (omitted)
[ FAILED ] FatalFailureTest.FatalFailureInSubroutine (? ms)
[ FAILED ] FatalFailureTest.FatalFailureInSubroutine (? ms)
[ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine
[ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine
(expecting a failure that x should be 1)
(expecting a failure that x should be 1)
...
@@ -726,6 +934,8 @@ Expected equality of these values:
...
@@ -726,6 +934,8 @@ Expected equality of these values:
1
1
x
x
Which is: 2
Which is: 2
Stack trace: (omitted)
[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine (? ms)
[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine (? ms)
[ RUN ] FatalFailureTest.NonfatalFailureInSubroutine
[ RUN ] FatalFailureTest.NonfatalFailureInSubroutine
(expecting a failure on false)
(expecting a failure on false)
...
@@ -733,6 +943,8 @@ gtest_output_test_.cc:#: Failure
...
@@ -733,6 +943,8 @@ gtest_output_test_.cc:#: Failure
Value of: false
Value of: false
Actual: false
Actual: false
Expected: true
Expected: true
Stack trace: (omitted)
[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine (? ms)
[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine (? ms)
[----------] 3 tests from FatalFailureTest (? ms total)
[----------] 3 tests from FatalFailureTest (? ms total)
...
@@ -743,10 +955,14 @@ i == 0
...
@@ -743,10 +955,14 @@ i == 0
i == 1
i == 1
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Expected: (3) >= (a[i]), actual: 3 vs 9
Expected: (3) >= (a[i]), actual: 3 vs 9
Stack trace: (omitted)
i == 2
i == 2
i == 3
i == 3
gtest_output_test_.cc:#: Failure
gtest_output_test_.cc:#: Failure
Expected: (3) >= (a[i]), actual: 3 vs 6
Expected: (3) >= (a[i]), actual: 3 vs 6
Stack trace: (omitted)
[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions (? ms)
[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions (? ms)
[----------] 1 test from LoggingTest (? ms total)
[----------] 1 test from LoggingTest (? ms total)
...
...
googletest/test/gtest_xml_output_unittest.py
View file @
b4d4438d
...
@@ -47,17 +47,22 @@ GTEST_OUTPUT_FLAG = '--gtest_output'
...
@@ -47,17 +47,22 @@ GTEST_OUTPUT_FLAG = '--gtest_output'
GTEST_DEFAULT_OUTPUT_FILE
=
'test_detail.xml'
GTEST_DEFAULT_OUTPUT_FILE
=
'test_detail.xml'
GTEST_PROGRAM_NAME
=
'gtest_xml_output_unittest_'
GTEST_PROGRAM_NAME
=
'gtest_xml_output_unittest_'
# The flag indicating stacktraces are not supported
NO_STACKTRACE_SUPPORT_FLAG
=
'--no_stacktrace_support'
# The environment variables for test sharding.
# The environment variables for test sharding.
TOTAL_SHARDS_ENV_VAR
=
'GTEST_TOTAL_SHARDS'
TOTAL_SHARDS_ENV_VAR
=
'GTEST_TOTAL_SHARDS'
SHARD_INDEX_ENV_VAR
=
'GTEST_SHARD_INDEX'
SHARD_INDEX_ENV_VAR
=
'GTEST_SHARD_INDEX'
SHARD_STATUS_FILE_ENV_VAR
=
'GTEST_SHARD_STATUS_FILE'
SHARD_STATUS_FILE_ENV_VAR
=
'GTEST_SHARD_STATUS_FILE'
SUPPORTS_STACK_TRACES
=
False
SUPPORTS_STACK_TRACES
=
NO_STACKTRACE_SUPPORT_FLAG
not
in
sys
.
argv
if
SUPPORTS_STACK_TRACES
:
if
SUPPORTS_STACK_TRACES
:
STACK_TRACE_TEMPLATE
=
'
\n
Stack trace:
\n
*'
STACK_TRACE_TEMPLATE
=
'
\n
Stack trace:
\n
*'
else
:
else
:
STACK_TRACE_TEMPLATE
=
''
STACK_TRACE_TEMPLATE
=
''
# unittest.main() can't handle unknown flags
sys
.
argv
.
remove
(
NO_STACKTRACE_SUPPORT_FLAG
)
EXPECTED_NON_EMPTY_XML
=
"""<?xml version="1.0" encoding="UTF-8"?>
EXPECTED_NON_EMPTY_XML
=
"""<?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="23" failures="4" disabled="2" errors="0" time="*" timestamp="*" name="AllTests" ad_hoc_property="42">
<testsuites tests="23" failures="4" disabled="2" errors="0" time="*" timestamp="*" name="AllTests" ad_hoc_property="42">
...
...
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