gtest.cc: add a newline after a failure when there is no OS stack trace.
This makes the behavior consistent when GTEST_STACK_TRACE_DEPTH is set to zero and not: there is always vertical whitespace separating failure messages. PiperOrigin-RevId: 518744611 Change-Id: I5b4af40633849850660504c3f497a76601d4311d
This commit is contained in:
parent
974e18ee6f
commit
5fce13091d
@ -40,6 +40,7 @@ FILE:#: EXPECT_CALL(foo_, Bar2(0, _))...
|
|||||||
Actual: 1
|
Actual: 1
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.UnexpectedCall
|
[ FAILED ] GMockOutputTest.UnexpectedCall
|
||||||
[ RUN ] GMockOutputTest.UnexpectedCallToVoidFunction
|
[ RUN ] GMockOutputTest.UnexpectedCallToVoidFunction
|
||||||
unknown file: Failure
|
unknown file: Failure
|
||||||
@ -53,6 +54,7 @@ FILE:#: EXPECT_CALL(foo_, Bar3(0, _))...
|
|||||||
Actual: 1
|
Actual: 1
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.UnexpectedCallToVoidFunction
|
[ FAILED ] GMockOutputTest.UnexpectedCallToVoidFunction
|
||||||
[ RUN ] GMockOutputTest.ExcessiveCall
|
[ RUN ] GMockOutputTest.ExcessiveCall
|
||||||
FILE:#: Failure
|
FILE:#: Failure
|
||||||
@ -61,6 +63,7 @@ Mock function called more times than expected - returning default value.
|
|||||||
Returns: false
|
Returns: false
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: called twice - over-saturated and active
|
Actual: called twice - over-saturated and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.ExcessiveCall
|
[ FAILED ] GMockOutputTest.ExcessiveCall
|
||||||
[ RUN ] GMockOutputTest.ExcessiveCallToVoidFunction
|
[ RUN ] GMockOutputTest.ExcessiveCallToVoidFunction
|
||||||
FILE:#: Failure
|
FILE:#: Failure
|
||||||
@ -68,6 +71,7 @@ Mock function called more times than expected - returning directly.
|
|||||||
Function call: Bar3(0, 1)
|
Function call: Bar3(0, 1)
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: called twice - over-saturated and active
|
Actual: called twice - over-saturated and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.ExcessiveCallToVoidFunction
|
[ FAILED ] GMockOutputTest.ExcessiveCallToVoidFunction
|
||||||
[ RUN ] GMockOutputTest.UninterestingCall
|
[ RUN ] GMockOutputTest.UninterestingCall
|
||||||
|
|
||||||
@ -104,6 +108,7 @@ FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(0, 0))...
|
|||||||
Actual: 1
|
Actual: 1
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.RetiredExpectation
|
[ FAILED ] GMockOutputTest.RetiredExpectation
|
||||||
[ RUN ] GMockOutputTest.UnsatisfiedPrerequisite
|
[ RUN ] GMockOutputTest.UnsatisfiedPrerequisite
|
||||||
unknown file: Failure
|
unknown file: Failure
|
||||||
@ -125,6 +130,7 @@ FILE:#: pre-requisite #0
|
|||||||
(end of pre-requisites)
|
(end of pre-requisites)
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.UnsatisfiedPrerequisite
|
[ FAILED ] GMockOutputTest.UnsatisfiedPrerequisite
|
||||||
[ RUN ] GMockOutputTest.UnsatisfiedPrerequisites
|
[ RUN ] GMockOutputTest.UnsatisfiedPrerequisites
|
||||||
unknown file: Failure
|
unknown file: Failure
|
||||||
@ -147,6 +153,7 @@ FILE:#: pre-requisite #1
|
|||||||
(end of pre-requisites)
|
(end of pre-requisites)
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.UnsatisfiedPrerequisites
|
[ FAILED ] GMockOutputTest.UnsatisfiedPrerequisites
|
||||||
[ RUN ] GMockOutputTest.UnsatisfiedWith
|
[ RUN ] GMockOutputTest.UnsatisfiedWith
|
||||||
FILE:#: Failure
|
FILE:#: Failure
|
||||||
@ -154,16 +161,19 @@ Actual function call count doesn't match EXPECT_CALL(foo_, Bar2(_, _))...
|
|||||||
Expected args: are a pair where the first >= the second
|
Expected args: are a pair where the first >= the second
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.UnsatisfiedWith
|
[ FAILED ] GMockOutputTest.UnsatisfiedWith
|
||||||
[ RUN ] GMockOutputTest.UnsatisfiedExpectation
|
[ RUN ] GMockOutputTest.UnsatisfiedExpectation
|
||||||
FILE:#: Failure
|
FILE:#: Failure
|
||||||
Actual function call count doesn't match EXPECT_CALL(foo_, Bar2(0, _))...
|
Actual function call count doesn't match EXPECT_CALL(foo_, Bar2(0, _))...
|
||||||
Expected: to be called twice
|
Expected: to be called twice
|
||||||
Actual: called once - unsatisfied and active
|
Actual: called once - unsatisfied and active
|
||||||
|
|
||||||
FILE:#: Failure
|
FILE:#: Failure
|
||||||
Actual function call count doesn't match EXPECT_CALL(foo_, Bar(_, _, _))...
|
Actual function call count doesn't match EXPECT_CALL(foo_, Bar(_, _, _))...
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.UnsatisfiedExpectation
|
[ FAILED ] GMockOutputTest.UnsatisfiedExpectation
|
||||||
[ RUN ] GMockOutputTest.MismatchArguments
|
[ RUN ] GMockOutputTest.MismatchArguments
|
||||||
unknown file: Failure
|
unknown file: Failure
|
||||||
@ -180,6 +190,7 @@ FILE:#: EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)))...
|
|||||||
Actual: -0.1
|
Actual: -0.1
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.MismatchArguments
|
[ FAILED ] GMockOutputTest.MismatchArguments
|
||||||
[ RUN ] GMockOutputTest.MismatchWith
|
[ RUN ] GMockOutputTest.MismatchWith
|
||||||
unknown file: Failure
|
unknown file: Failure
|
||||||
@ -194,6 +205,7 @@ FILE:#: EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))...
|
|||||||
Actual: don't match
|
Actual: don't match
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.MismatchWith
|
[ FAILED ] GMockOutputTest.MismatchWith
|
||||||
[ RUN ] GMockOutputTest.MismatchArgumentsAndWith
|
[ RUN ] GMockOutputTest.MismatchArgumentsAndWith
|
||||||
unknown file: Failure
|
unknown file: Failure
|
||||||
@ -210,6 +222,7 @@ FILE:#: EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))...
|
|||||||
Actual: don't match
|
Actual: don't match
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.MismatchArgumentsAndWith
|
[ FAILED ] GMockOutputTest.MismatchArgumentsAndWith
|
||||||
[ RUN ] GMockOutputTest.UnexpectedCallWithDefaultAction
|
[ RUN ] GMockOutputTest.UnexpectedCallWithDefaultAction
|
||||||
unknown file: Failure
|
unknown file: Failure
|
||||||
@ -227,6 +240,7 @@ FILE:#: EXPECT_CALL(foo_, Bar2(2, 2))...
|
|||||||
Actual: 0
|
Actual: 0
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
unknown file: Failure
|
unknown file: Failure
|
||||||
|
|
||||||
Unexpected mock function call - taking default action specified at:
|
Unexpected mock function call - taking default action specified at:
|
||||||
@ -242,6 +256,7 @@ FILE:#: EXPECT_CALL(foo_, Bar2(2, 2))...
|
|||||||
Actual: 0
|
Actual: 0
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: never called - unsatisfied and active
|
Actual: never called - unsatisfied and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.UnexpectedCallWithDefaultAction
|
[ FAILED ] GMockOutputTest.UnexpectedCallWithDefaultAction
|
||||||
[ RUN ] GMockOutputTest.ExcessiveCallWithDefaultAction
|
[ RUN ] GMockOutputTest.ExcessiveCallWithDefaultAction
|
||||||
FILE:#: Failure
|
FILE:#: Failure
|
||||||
@ -251,6 +266,7 @@ FILE:#:
|
|||||||
Returns: true
|
Returns: true
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: called twice - over-saturated and active
|
Actual: called twice - over-saturated and active
|
||||||
|
|
||||||
FILE:#: Failure
|
FILE:#: Failure
|
||||||
Mock function called more times than expected - taking default action specified at:
|
Mock function called more times than expected - taking default action specified at:
|
||||||
FILE:#:
|
FILE:#:
|
||||||
@ -258,6 +274,7 @@ FILE:#:
|
|||||||
Returns: false
|
Returns: false
|
||||||
Expected: to be called once
|
Expected: to be called once
|
||||||
Actual: called twice - over-saturated and active
|
Actual: called twice - over-saturated and active
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.ExcessiveCallWithDefaultAction
|
[ FAILED ] GMockOutputTest.ExcessiveCallWithDefaultAction
|
||||||
[ RUN ] GMockOutputTest.UninterestingCallWithDefaultAction
|
[ RUN ] GMockOutputTest.UninterestingCallWithDefaultAction
|
||||||
|
|
||||||
@ -293,6 +310,7 @@ FILE:#: Failure
|
|||||||
Value of: (std::tuple<int, bool>(42, true))
|
Value of: (std::tuple<int, bool>(42, true))
|
||||||
Expected: is pair (first: is >= 48, second: true)
|
Expected: is pair (first: is >= 48, second: true)
|
||||||
Actual: (42, true)
|
Actual: (42, true)
|
||||||
|
|
||||||
[ FAILED ] GMockOutputTest.PrintsMatcher
|
[ FAILED ] GMockOutputTest.PrintsMatcher
|
||||||
[ FAILED ] GMockOutputTest.UnexpectedCall
|
[ FAILED ] GMockOutputTest.UnexpectedCall
|
||||||
[ FAILED ] GMockOutputTest.UnexpectedCallToVoidFunction
|
[ FAILED ] GMockOutputTest.UnexpectedCallToVoidFunction
|
||||||
|
@ -5319,6 +5319,8 @@ void UnitTest::AddTestPartResult(TestPartResult::Type result_type,
|
|||||||
|
|
||||||
if (os_stack_trace.c_str() != nullptr && !os_stack_trace.empty()) {
|
if (os_stack_trace.c_str() != nullptr && !os_stack_trace.empty()) {
|
||||||
msg << internal::kStackTraceMarker << os_stack_trace;
|
msg << internal::kStackTraceMarker << os_stack_trace;
|
||||||
|
} else {
|
||||||
|
msg << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
const TestPartResult result = TestPartResult(
|
const TestPartResult result = TestPartResult(
|
||||||
|
@ -54,7 +54,7 @@ SUPPORTS_STACK_TRACES = NO_STACKTRACE_SUPPORT_FLAG not in sys.argv
|
|||||||
if SUPPORTS_STACK_TRACES:
|
if SUPPORTS_STACK_TRACES:
|
||||||
STACK_TRACE_TEMPLATE = '\nStack trace:\n*'
|
STACK_TRACE_TEMPLATE = '\nStack trace:\n*'
|
||||||
else:
|
else:
|
||||||
STACK_TRACE_TEMPLATE = ''
|
STACK_TRACE_TEMPLATE = '\n'
|
||||||
|
|
||||||
EXPECTED_NON_EMPTY = {
|
EXPECTED_NON_EMPTY = {
|
||||||
'tests': 26,
|
'tests': 26,
|
||||||
|
@ -132,7 +132,7 @@ def RemoveStackTraces(output):
|
|||||||
"""Removes all traces of stack traces from a Google Test program's output."""
|
"""Removes all traces of stack traces from a Google Test program's output."""
|
||||||
|
|
||||||
# *? means "find the shortest string that matches".
|
# *? means "find the shortest string that matches".
|
||||||
return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
|
return re.sub(r'Stack trace:(.|\n)*?\n', '', output)
|
||||||
|
|
||||||
|
|
||||||
def RemoveTime(output):
|
def RemoveTime(output):
|
||||||
|
@ -59,8 +59,10 @@ SUPPORTS_STACK_TRACES = NO_STACKTRACE_SUPPORT_FLAG not in sys.argv
|
|||||||
|
|
||||||
if SUPPORTS_STACK_TRACES:
|
if SUPPORTS_STACK_TRACES:
|
||||||
STACK_TRACE_TEMPLATE = '\nStack trace:\n*'
|
STACK_TRACE_TEMPLATE = '\nStack trace:\n*'
|
||||||
|
STACK_TRACE_ENTITY_TEMPLATE = ''
|
||||||
else:
|
else:
|
||||||
STACK_TRACE_TEMPLATE = ''
|
STACK_TRACE_TEMPLATE = '\n'
|
||||||
|
STACK_TRACE_ENTITY_TEMPLATE = '
'
|
||||||
# unittest.main() can't handle unknown flags
|
# unittest.main() can't handle unknown flags
|
||||||
sys.argv.remove(NO_STACKTRACE_SUPPORT_FLAG)
|
sys.argv.remove(NO_STACKTRACE_SUPPORT_FLAG)
|
||||||
|
|
||||||
@ -71,7 +73,7 @@ EXPECTED_NON_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
|
|||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="FailedTest" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*">
|
<testsuite name="FailedTest" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*">
|
||||||
<testcase name="Fails" file="gtest_xml_output_unittest_.cc" line="59" status="run" result="completed" time="*" timestamp="*" classname="FailedTest">
|
<testcase name="Fails" file="gtest_xml_output_unittest_.cc" line="59" status="run" result="completed" time="*" timestamp="*" classname="FailedTest">
|
||||||
<failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 1
 2" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
<failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 1
 2%(stack_entity)s" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
Expected equality of these values:
|
Expected equality of these values:
|
||||||
1
|
1
|
||||||
2%(stack)s]]></failure>
|
2%(stack)s]]></failure>
|
||||||
@ -80,11 +82,11 @@ Expected equality of these values:
|
|||||||
<testsuite name="MixedResultTest" tests="3" failures="1" disabled="1" skipped="0" errors="0" time="*" timestamp="*">
|
<testsuite name="MixedResultTest" tests="3" failures="1" disabled="1" skipped="0" errors="0" time="*" timestamp="*">
|
||||||
<testcase name="Succeeds" file="gtest_xml_output_unittest_.cc" line="86" status="run" result="completed" time="*" timestamp="*" classname="MixedResultTest"/>
|
<testcase name="Succeeds" file="gtest_xml_output_unittest_.cc" line="86" status="run" result="completed" time="*" timestamp="*" classname="MixedResultTest"/>
|
||||||
<testcase name="Fails" file="gtest_xml_output_unittest_.cc" line="91" status="run" result="completed" time="*" timestamp="*" classname="MixedResultTest">
|
<testcase name="Fails" file="gtest_xml_output_unittest_.cc" line="91" status="run" result="completed" time="*" timestamp="*" classname="MixedResultTest">
|
||||||
<failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 1
 2" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
<failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 1
 2%(stack_entity)s" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
Expected equality of these values:
|
Expected equality of these values:
|
||||||
1
|
1
|
||||||
2%(stack)s]]></failure>
|
2%(stack)s]]></failure>
|
||||||
<failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 2
 3" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
<failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 2
 3%(stack_entity)s" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
Expected equality of these values:
|
Expected equality of these values:
|
||||||
2
|
2
|
||||||
3%(stack)s]]></failure>
|
3%(stack)s]]></failure>
|
||||||
@ -93,14 +95,14 @@ Expected equality of these values:
|
|||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="XmlQuotingTest" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*">
|
<testsuite name="XmlQuotingTest" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*">
|
||||||
<testcase name="OutputsCData" file="gtest_xml_output_unittest_.cc" line="100" status="run" result="completed" time="*" timestamp="*" classname="XmlQuotingTest">
|
<testcase name="OutputsCData" file="gtest_xml_output_unittest_.cc" line="100" status="run" result="completed" time="*" timestamp="*" classname="XmlQuotingTest">
|
||||||
<failure message="gtest_xml_output_unittest_.cc:*
Failed
XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]></top>" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
<failure message="gtest_xml_output_unittest_.cc:*
Failed
XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]></top>%(stack_entity)s" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
Failed
|
Failed
|
||||||
XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]><![CDATA[</top>%(stack)s]]></failure>
|
XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]><![CDATA[</top>%(stack)s]]></failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="InvalidCharactersTest" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*">
|
<testsuite name="InvalidCharactersTest" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*">
|
||||||
<testcase name="InvalidCharactersInMessage" file="gtest_xml_output_unittest_.cc" line="107" status="run" result="completed" time="*" timestamp="*" classname="InvalidCharactersTest">
|
<testcase name="InvalidCharactersInMessage" file="gtest_xml_output_unittest_.cc" line="107" status="run" result="completed" time="*" timestamp="*" classname="InvalidCharactersTest">
|
||||||
<failure message="gtest_xml_output_unittest_.cc:*
Failed
Invalid characters in brackets []" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
<failure message="gtest_xml_output_unittest_.cc:*
Failed
Invalid characters in brackets []%(stack_entity)s" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
Failed
|
Failed
|
||||||
Invalid characters in brackets []%(stack)s]]></failure>
|
Invalid characters in brackets []%(stack)s]]></failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
@ -110,19 +112,19 @@ Invalid characters in brackets []%(stack)s]]></failure>
|
|||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="SkippedTest" tests="3" failures="1" disabled="0" skipped="2" errors="0" time="*" timestamp="*">
|
<testsuite name="SkippedTest" tests="3" failures="1" disabled="0" skipped="2" errors="0" time="*" timestamp="*">
|
||||||
<testcase name="Skipped" status="run" file="gtest_xml_output_unittest_.cc" line="73" result="skipped" time="*" timestamp="*" classname="SkippedTest">
|
<testcase name="Skipped" status="run" file="gtest_xml_output_unittest_.cc" line="73" result="skipped" time="*" timestamp="*" classname="SkippedTest">
|
||||||
<skipped message="gtest_xml_output_unittest_.cc:*
"><![CDATA[gtest_xml_output_unittest_.cc:*
|
<skipped message="gtest_xml_output_unittest_.cc:*
%(stack_entity)s"><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
%(stack)s]]></skipped>
|
%(stack)s]]></skipped>
|
||||||
</testcase>
|
</testcase>
|
||||||
<testcase name="SkippedWithMessage" file="gtest_xml_output_unittest_.cc" line="77" status="run" result="skipped" time="*" timestamp="*" classname="SkippedTest">
|
<testcase name="SkippedWithMessage" file="gtest_xml_output_unittest_.cc" line="77" status="run" result="skipped" time="*" timestamp="*" classname="SkippedTest">
|
||||||
<skipped message="gtest_xml_output_unittest_.cc:*
It is good practice to tell why you skip a test."><![CDATA[gtest_xml_output_unittest_.cc:*
|
<skipped message="gtest_xml_output_unittest_.cc:*
It is good practice to tell why you skip a test.%(stack_entity)s"><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
It is good practice to tell why you skip a test.%(stack)s]]></skipped>
|
It is good practice to tell why you skip a test.%(stack)s]]></skipped>
|
||||||
</testcase>
|
</testcase>
|
||||||
<testcase name="SkippedAfterFailure" file="gtest_xml_output_unittest_.cc" line="81" status="run" result="completed" time="*" timestamp="*" classname="SkippedTest">
|
<testcase name="SkippedAfterFailure" file="gtest_xml_output_unittest_.cc" line="81" status="run" result="completed" time="*" timestamp="*" classname="SkippedTest">
|
||||||
<failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 1
 2" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
<failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 1
 2%(stack_entity)s" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
Expected equality of these values:
|
Expected equality of these values:
|
||||||
1
|
1
|
||||||
2%(stack)s]]></failure>
|
2%(stack)s]]></failure>
|
||||||
<skipped message="gtest_xml_output_unittest_.cc:*
It is good practice to tell why you skip a test."><![CDATA[gtest_xml_output_unittest_.cc:*
|
<skipped message="gtest_xml_output_unittest_.cc:*
It is good practice to tell why you skip a test.%(stack_entity)s"><![CDATA[gtest_xml_output_unittest_.cc:*
|
||||||
It is good practice to tell why you skip a test.%(stack)s]]></skipped>
|
It is good practice to tell why you skip a test.%(stack)s]]></skipped>
|
||||||
</testcase>
|
</testcase>
|
||||||
|
|
||||||
@ -187,7 +189,8 @@ It is good practice to tell why you skip a test.%(stack)s]]></skipped>
|
|||||||
<testcase name="HasTypeParamAttribute" file="gtest_xml_output_unittest_.cc" line="178" type_param="*" status="run" result="completed" time="*" timestamp="*" classname="Single/TypeParameterizedTestSuite/1" />
|
<testcase name="HasTypeParamAttribute" file="gtest_xml_output_unittest_.cc" line="178" type_param="*" status="run" result="completed" time="*" timestamp="*" classname="Single/TypeParameterizedTestSuite/1" />
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>""" % {
|
</testsuites>""" % {
|
||||||
'stack': STACK_TRACE_TEMPLATE
|
'stack': STACK_TRACE_TEMPLATE,
|
||||||
|
'stack_entity': STACK_TRACE_ENTITY_TEMPLATE,
|
||||||
}
|
}
|
||||||
|
|
||||||
EXPECTED_FILTERED_TEST_XML = """<?xml version="1.0" encoding="UTF-8"?>
|
EXPECTED_FILTERED_TEST_XML = """<?xml version="1.0" encoding="UTF-8"?>
|
||||||
@ -221,14 +224,15 @@ EXPECTED_NO_TEST_XML = """<?xml version="1.0" encoding="UTF-8"?>
|
|||||||
timestamp="*" name="AllTests">
|
timestamp="*" name="AllTests">
|
||||||
<testsuite name="NonTestSuiteFailure" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*">
|
<testsuite name="NonTestSuiteFailure" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*">
|
||||||
<testcase name="" status="run" result="completed" time="*" timestamp="*" classname="">
|
<testcase name="" status="run" result="completed" time="*" timestamp="*" classname="">
|
||||||
<failure message="gtest_no_test_unittest.cc:*
Expected equality of these values:
 1
 2" type=""><![CDATA[gtest_no_test_unittest.cc:*
|
<failure message="gtest_no_test_unittest.cc:*
Expected equality of these values:
 1
 2%(stack_entity)s" type=""><![CDATA[gtest_no_test_unittest.cc:*
|
||||||
Expected equality of these values:
|
Expected equality of these values:
|
||||||
1
|
1
|
||||||
2%(stack)s]]></failure>
|
2%(stack)s]]></failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>""" % {
|
</testsuites>""" % {
|
||||||
'stack': STACK_TRACE_TEMPLATE
|
'stack': STACK_TRACE_TEMPLATE,
|
||||||
|
'stack_entity': STACK_TRACE_ENTITY_TEMPLATE,
|
||||||
}
|
}
|
||||||
|
|
||||||
GTEST_PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath(GTEST_PROGRAM_NAME)
|
GTEST_PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath(GTEST_PROGRAM_NAME)
|
||||||
|
Loading…
Reference in New Issue
Block a user