Changes between Version 11 and Version 12 of AdvantagesOfJenkinsOverBuildbot
- Timestamp:
- Dec 22, 2011, 8:52:24 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvantagesOfJenkinsOverBuildbot
v11 v12 19 19 Jenkins has built-in support for determining when a test started failing, and will link you right to that build. See [https://builds.apache.org/job/Cassandra-Coverage/192/testReport/ an example from Apache's Jenkins server]. The "Age" column contains links to the first build in which each test failed. To take advantage of this we'd want to make all our testing tools output [http://ant.apache.org/manual/Tasks/junitreport.html JUnitReport]-style XML files. (TestWebKitAPI already knows how to do this if you pass it the `--gtest_output=xml` option.) 20 20 21 == Graphs of test failures over time ==21 == Graphs of aggregate test failures over time == 22 22 23 23 Jenkins has built-in support for tracking the number of failing tests over time and graphing it. See [https://builds.apache.org/job/Cassandra-Coverage/test/?width=800&height=600 an example from Apache's Jenkins server]. 24 25 == Graphs/tables of individual test duration and failures over time == 26 27 Jenkins has built-in support for graphing test duration over time and generating tables of test failures over time. See [https://builds.apache.org/job/PreCommit-HADOOP-Build/479/testReport/org.apache.hadoop.ipc/TestIPC/testHttpGetResponse/history/ an example from Apache's Jenkins server].