-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JENKINS-48583 Remove test result deduplication logic (#131)
Co-authored-by: Kevin Neal <Kevin_Neal@intuit.com> Co-authored-by: Tim Jacomb <timjacomb1+github@gmail.com>
- Loading branch information
1 parent
67e9ddb
commit 3a90162
Showing
6 changed files
with
79 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
src/test/resources/hudson/tasks/junit/JENKINS-12457/TestSuite_b_nonduplicate.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuite name="TestSuite_b" tests="1" errors="0" failures="0" skip="0" timestamp="2012-01-01T00:00:00"> | ||
<testcase classname="TestFoo" name="bar2" time="1" /> | ||
</testsuite> |
8 changes: 8 additions & 0 deletions
8
src/test/resources/hudson/tasks/junit/JENKINS-48583/TEST-com.sample.test.TestMessage.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuite errors="0" failures="0" hostname="myhost" name="com.sample.test.TestMessage" skipped="0" tests="1" time="0.063" timestamp="2015-01-13T07:23:07"> | ||
<properties> | ||
</properties> | ||
<testcase classname="com.sample.test.TestMessage" name="test_welcome_message" time="0.002" /> | ||
<system-out><![CDATA[]]></system-out> | ||
<system-err><![CDATA[]]></system-err> | ||
</testsuite> |
9 changes: 9 additions & 0 deletions
9
src/test/resources/hudson/tasks/junit/JENKINS-48583/TEST-com.sample.test.TestMessage2.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuite errors="0" failures="0" hostname="myhost" name="com.sample.test.TestMessage2" skipped="0" tests="2" time="0.06" timestamp="2015-01-13T07:23:08"> | ||
<properties> | ||
</properties> | ||
<testcase classname="com.sample.test.TestMessage2" name="test_welcome_message_2" time="0.001" /> | ||
<testcase classname="com.sample.test.TestMessage2" name="test_welcome_message_3" time="0.003" /> | ||
<system-out><![CDATA[]]></system-out> | ||
<system-err><![CDATA[]]></system-err> | ||
</testsuite> |
18 changes: 18 additions & 0 deletions
18
src/test/resources/hudson/tasks/junit/JENKINS-48583/TESTS-TestSuites.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuites> | ||
<testsuite errors="0" failures="0" hostname="myhost" id="0" name="TestMessage" package="com.sample.test" skipped="0" tests="1" time="0.063" timestamp="2015-01-13T07:23:07"> | ||
<properties> | ||
</properties> | ||
<testcase classname="com.sample.test.TestMessage" name="test_welcome_message" time="0.002" /> | ||
<system-out><![CDATA[]]></system-out> | ||
<system-err><![CDATA[]]></system-err> | ||
</testsuite> | ||
<testsuite errors="0" failures="0" hostname="myhost" id="1" name="TestMessage2" package="com.sample.test" skipped="0" tests="2" time="0.06" timestamp="2015-01-13T07:23:08"> | ||
<properties> | ||
</properties> | ||
<testcase classname="com.sample.test.TestMessage2" name="test_welcome_message_2" time="0.001" /> | ||
<testcase classname="com.sample.test.TestMessage2" name="test_welcome_message_3" time="0.003" /> | ||
<system-out><![CDATA[]]></system-out> | ||
<system-err><![CDATA[]]></system-err> | ||
</testsuite> | ||
</testsuites> |