Sean Busbey created HBASE-19202:
-----------------------------------
Summary: include info on slowest tests in nightly/precommit
Key: HBASE-19202
URL: https://issues.apache.org/jira/browse/HBASE-19202
Project: HBase
Issue Type: New Feature
Components: build
Reporter: Sean Busbey
Priority: Minor
as a part of our regular builds, output the slowest tests somewhere interested
parties can track. probably an archived file?
checkout example from junit folks:
https://github.com/junit-team/junit4/wiki/Use-with-Maven#discover-slowest-test-from-surefire-xml-output
{code}
grep -h "<testcase" `find . -iname "TEST-*.xml"` | sed 's/<testcase
name="\(.*\)" classname="\(.*\)" time="\(.*\)".*/\3\t\2.\1/' | sort -rn | head
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)