commit 521980e24875af8a4dfff8bbfce73bdd3d78b611 Author: cheister Date: Tue Apr 17 09:47:28 2018 -0700 Fix some errorprone warnings and remove duplicates from findbugs targets (#5711) .../pantsbuild/tools/junit/impl/ConcurrentRunnerScheduler.java | 10 ++++------ src/java/org/pantsbuild/tools/junit/impl/SpecSet.java | 4 ++-- src/java/org/pantsbuild/tools/junit/impl/Util.java | 2 +- 3 files changed, 7 insertions(+), 9 deletions(-) commit 7db1588f644f2f6d4158322ab1a7050e0fc6ebb9 Author: Nick Howard Date: Thu Apr 5 16:54:11 2018 -0600 [junit-runner] cache localhost lookups to ease OSX/JDK DNS issues (#5660) OSX's DNS service's handling of localhost names changed, I think with 10.12, in a way that combined with JDK releases after a particular point release of 1.8 causes looking up localhost's name to take on the order of seconds for some folks. https://bugs.openjdk.java.net/browse/JDK-8170910 This patch changes the localhost lookup so that it happens in the xml listener's constructor instead of once per test suite entry. That way, if folks run into the issue, they'll only pay the cost one time instead of n. .../junit/impl/AntJunitXmlReportListener.java | 26 +++++++++++++++------- 1 file changed, 18 insertions(+), 8 deletions(-) commit 75349921aa840b863c0587a528f268d8c611cc3c Author: Ian Tabolt Date: Thu Mar 22 19:39:40 2018 -0400 Memoize org.scalatest.Suite class loading (#5614) * Memoize org.scalatest.Suite class loading * Load Suite class in static initialization * No final with try catch * Also load junit runner class in static init * Fix small style issues * Touch file in attempt to get CI to work * Revert "Touch file in attempt to get CI to work" This reverts commit c69dfc763ec73ebc84f8d45f9c17c0a4a93e9b8e. * Edit the line that CI is complaining about ¯\_(ツ)_/¯ * Another edit to be safe * Revert "Another edit to be safe" This reverts commit 694724ec2fffe87cf3406f3373fb8f155f85f304. * Revert "Edit the line that CI is complaining about ¯\_(ツ)_/¯" This reverts commit 7ec742309d76cdae837626e4ed5053501f3c1419. * Disable fmt.google-java-format .../pantsbuild/tools/junit/impl/ScalaTestUtil.java | 39 +++++++++++----------- 1 file changed, 20 insertions(+), 19 deletions(-)