# HG changeset patch # User Jiri Vanek # Date 1370531394 -7200 # Node ID 3c5e0952d87616a36b4d3633d984f9eeda754d38 # Parent ff0d07a33ad2cbf5763e2888bb3118753dc4461e Made all tests running wit junit4.10 and higher * tests/junit-runner/CommandLine.java: (runMain) is no longer overriding and (runMainAndExit) is now calling System.exit rather then system.exit diff -r ff0d07a33ad2 -r 3c5e0952d876 ChangeLog --- a/ChangeLog Thu May 02 13:55:23 2013 -0400 +++ b/ChangeLog Thu Jun 06 17:09:54 2013 +0200 @@ -1,3 +1,9 @@ +2013-06-06 Jiri Vanek + + Made all tests running wit junit4.10 and higher + * tests/junit-runner/CommandLine.java: (runMain) is no longer overriding + and (runMainAndExit) is now calling System.exit rather then system.exit + 2013-05-02 Adam Domurad Ensure document-base is properly encoded. diff -r ff0d07a33ad2 -r 3c5e0952d876 tests/junit-runner/CommandLine.java --- a/tests/junit-runner/CommandLine.java Thu May 02 13:55:23 2013 -0400 +++ b/tests/junit-runner/CommandLine.java Thu Jun 06 17:09:54 2013 +0200 @@ -26,10 +26,9 @@ public static void runMainAndExit(JUnitSystem system, String... args) { new CommandLine().runMain(system, args); - system.exit(0); + System.exit(0); } - @Override public Result runMain(JUnitSystem system, String... args) { List> classes = new ArrayList>(); List missingClasses = new ArrayList();