/hg/icedtea-web: Innerclasses and jnlp files are now skipped dur...
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Mon May 9 13:02:39 PDT 2011
changeset f93285fdccdf in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=f93285fdccdf
author: Jiri Vanek <jvanek at redhat.com>
date: Mon May 09 21:58:48 2011 +0200
Innerclasses and jnlp files are now skipped during testing without
warning or eror
diffstat:
ChangeLog | 4 ++++
tests/junit-runner/CommandLine.java | 2 ++
2 files changed, 6 insertions(+), 0 deletions(-)
diffs (23 lines):
diff -r c4a58969d117 -r f93285fdccdf ChangeLog
--- a/ChangeLog Tue May 03 09:14:16 2011 -0400
+++ b/ChangeLog Mon May 09 21:58:48 2011 +0200
@@ -1,3 +1,7 @@
+2011-05-09 Jiri Vanek <jvanek at redhat.com>
+ * tests/junit-runner/CommandLine.java:r added skipping of inner
+ classes and one jnlp file from sources package.
+
2011-05-03 Denis Lila <dlila at redhat.com>
* netx/net/sourceforge/jnlp/NetxPanel.java:
diff -r c4a58969d117 -r f93285fdccdf tests/junit-runner/CommandLine.java
--- a/tests/junit-runner/CommandLine.java Tue May 03 09:14:16 2011 -0400
+++ b/tests/junit-runner/CommandLine.java Mon May 09 21:58:48 2011 +0200
@@ -34,6 +34,8 @@
List<Failure> missingClasses = new ArrayList<Failure>();
for (String each : args) {
try {
+ if (each.contains("$")) continue;
+ if (each.toLowerCase().endsWith(".jnlp")) continue;
classes.add(Class.forName(each));
} catch (ClassNotFoundException e) {
system.out().println("ERROR: Could not find class: " + each);
More information about the distro-pkg-dev
mailing list