/hg/release/icedtea-web-1.3: Made all tests running wit junit4.1...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Thu Jun 6 08:13:05 PDT 2013


changeset 3c5e0952d876 in /hg/release/icedtea-web-1.3
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.3?cmd=changeset;node=3c5e0952d876
author: Jiri Vanek <jvanek at redhat.com>
date: Thu Jun 06 17:09:54 2013 +0200

	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


diffstat:

 ChangeLog                           |  6 ++++++
 tests/junit-runner/CommandLine.java |  3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

diffs (28 lines):

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  <jvanek at redhat.com>
+
+	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  <adomurad at redhat.com>
 
 	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<Class<?>> classes = new ArrayList<Class<?>>();
         List<Failure> missingClasses = new ArrayList<Failure>();



More information about the distro-pkg-dev mailing list