You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Sean Busbey (JIRA)" <ji...@apache.org> on 2017/11/07 17:16:00 UTC

[jira] [Created] (HBASE-19202) include info on slowest tests in nightly/precommit

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)