/hg/icedtea-web: 2 new changesets
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Tue Jun 21 07:28:14 PDT 2011
changeset 463e43653db5 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=463e43653db5
author: Jiri Vanek <jvanek at redhat.com>
date: Tue Jun 21 16:09:47 2011 +0200
run-netx-dist-tests now also copy styes
changeset 63bb7f2b0604 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=63bb7f2b0604
author: Jiri Vanek <jvanek at redhat.com>
date: Tue Jun 21 16:22:09 2011 +0200
added first set of reproducers
diffstat:
ChangeLog | 11 +
Makefile.am | 4 +-
tests/jnlp_tests/simple/AccessClassInPackage/resources/AccessClassInPackage.jnlp | 12 +
tests/jnlp_tests/simple/AccessClassInPackage/srcs/AccessClassInPackage.java | 43 +++++
tests/jnlp_tests/simple/AccessClassInPackage/testcases/AccessClassInPackageTest.java | 59 +++++++
tests/jnlp_tests/simple/AddShutdownHook/resources/AddShutdownHook.jnlp | 12 +
tests/jnlp_tests/simple/AddShutdownHook/srcs/AddShutdownHook.java | 48 ++++++
tests/jnlp_tests/simple/AddShutdownHook/testcases/AddShutdownHookTest.java | 59 +++++++
tests/jnlp_tests/simple/AllStackTraces/resources/AllStackTraces.jnlp | 12 +
tests/jnlp_tests/simple/AllStackTraces/srcs/AllStackTraces.java | 42 +++++
tests/jnlp_tests/simple/AllStackTraces/testcases/AllStackTracesTest.java | 62 ++++++++
tests/jnlp_tests/simple/CreateClassLoader/resources/CreateClassLoader.jnlp | 12 +
tests/jnlp_tests/simple/CreateClassLoader/srcs/CreateClassLoader.java | 46 ++++++
tests/jnlp_tests/simple/CreateClassLoader/testcases/CreateClassLoaderTest.java | 59 +++++++
tests/jnlp_tests/simple/ReadEnvironment/resources/ReadEnvironment.jnlp | 12 +
tests/jnlp_tests/simple/ReadEnvironment/srcs/ReadEnvironment.java | 44 +++++
tests/jnlp_tests/simple/ReadEnvironment/testcases/ReadEnvironmentTest.java | 59 +++++++
tests/jnlp_tests/simple/ReadProperties/resources/ReadProperties1.jnlp | 16 ++
tests/jnlp_tests/simple/ReadProperties/resources/ReadProperties2.jnlp | 14 +
tests/jnlp_tests/simple/ReadProperties/srcs/ReadProperties.java | 45 ++++++
tests/jnlp_tests/simple/ReadProperties/testcases/ReadPropertiesTest.java | 74 ++++++++++
tests/jnlp_tests/simple/RedirectStreams/resources/RedirectStreams.jnlp | 12 +
tests/jnlp_tests/simple/RedirectStreams/srcs/RedirectStreams.java | 44 +++++
tests/jnlp_tests/simple/RedirectStreams/testcases/RedirectStreamsTest.java | 58 +++++++
tests/jnlp_tests/simple/ReplaceSecurityManager/resources/ReplaceSecurityManager.jnlp | 12 +
tests/jnlp_tests/simple/ReplaceSecurityManager/srcs/ReplaceSecurityManager.java | 43 +++++
tests/jnlp_tests/simple/ReplaceSecurityManager/testcases/ReplaceSecurityManagerTest.java | 58 +++++++
tests/jnlp_tests/simple/SetContextClassLoader/resources/SetContextClassLoader.jnlp | 12 +
tests/jnlp_tests/simple/SetContextClassLoader/srcs/SetContextClassLoader.java | 44 +++++
tests/jnlp_tests/simple/SetContextClassLoader/testcases/SetContextClassLoaderTest.java | 58 +++++++
30 files changed, 1084 insertions(+), 2 deletions(-)
diffs (truncated from 1222 to 500 lines):
diff -r e54277aefdaf -r 63bb7f2b0604 ChangeLog
--- a/ChangeLog Sun Jun 19 18:48:22 2011 +0200
+++ b/ChangeLog Tue Jun 21 16:22:09 2011 +0200
@@ -1,3 +1,14 @@
+2011-06-21 Jiri Vanek <jvanek at redhat.com>
+
+ *tests/jnlp_tests/simple: AccessClassInPackage, ReplaceSecurityManager,
+ AddShutdownHook, ReadEnvironment, SetContextClassLoader,
+ AllStackTraces, ReadProperties, CreateClassLoader, RedirectStreams tests
+
+2011-06-21 Jiri Vanek <jvanek at redhat.com>
+
+ *Makefile.am: (run-netx-dist-tests): no depends on copying of styles
+ (clean-netx-dist-tests): depends also on removing of styles
+
2011-06-17 Jiri Vanek <jvanek at redhat.com>
* tests/jnlp_tests: directory for reproducers
diff -r e54277aefdaf -r 63bb7f2b0604 Makefile.am
--- a/Makefile.am Sun Jun 19 18:48:22 2011 +0200
+++ b/Makefile.am Tue Jun 21 16:22:09 2011 +0200
@@ -501,7 +501,7 @@
touch $@
run-netx-dist-tests: all-local stamps/netx.stamp junit-jnlp-dist-dirs.txt stamps/netx-dist-tests-prepare-reproducers.stamp \
- stamps/netx-dist-tests-compile.stamp stamps/netx-dist-tests-compile-testcases.stamp $(JUNIT_RUNNER_JAR)
+ stamps/netx-dist-tests-compile.stamp stamps/netx-dist-tests-compile-testcases.stamp $(JUNIT_RUNNER_JAR) $(TESTS_DIR)/$(REPORT_STYLES_DIRNAME)
cd $(JNLP_TESTS_ENGINE_DIR) ; \
class_names= ; \
for test in `find -type f` ; do \
@@ -573,7 +573,7 @@
rm -rf $(TESTS_DIR)/$(REPORT_STYLES_DIRNAME)/
rm -f $(TESTS_DIR)/index*.html
-clean-netx-dist-tests:
+clean-netx-dist-tests: clean_tests_reports
rm -f netx-dist-tests-source-files.txt
rm -rf $(JNLP_TESTS_DIR)
rm -rf $(JNLP_TESTS_SERVER_DEPLOYDIR)
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AccessClassInPackage/resources/AccessClassInPackage.jnlp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AccessClassInPackage/resources/AccessClassInPackage.jnlp Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0"
+ codebase="."
+ href="AccessClassInPackage.jnlp">
+ <information>
+ <title>Test accessClassInPackage</title>
+ </information>
+ <resources>
+ <jar href="AccessClassInPackage.jar" main="true"/>
+ </resources>
+ <application-desc main-class="AccessClassInPackage"/>
+</jnlp>
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AccessClassInPackage/srcs/AccessClassInPackage.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AccessClassInPackage/srcs/AccessClassInPackage.java Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,43 @@
+/* AccessClassInPackage.java
+Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+public class AccessClassInPackage {
+
+ public static void main(String[] args) throws Exception{
+ Class.forName("sun.security.internal.spec.TlsKeyMaterialSpec");
+ }
+}
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AccessClassInPackage/testcases/AccessClassInPackageTest.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AccessClassInPackage/testcases/AccessClassInPackageTest.java Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,59 @@
+/* AccessClassInPackageTest.java
+Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+import net.sourceforge.jnlp.ServerAccess;
+import org.junit.Assert;
+
+import org.junit.Test;
+
+public class AccessClassInPackageTest {
+
+ private static ServerAccess server = new ServerAccess();
+
+ @Test
+ public void AccessClassInPackageTestLunch1() throws Exception {
+ System.out.println("connecting AccessClassInPackageTest request");
+ ServerAccess.ProcessResult pr = server.executeJavawsHeadless(null, "/AccessClassInPackage.jnlp");
+ System.out.println(pr.stdout);
+ System.err.println(pr.stderr);
+ Assert.assertTrue(pr.stderr.contains("java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.security.internal.spec)"));
+ Assert.assertFalse(pr.stderr.contains("ClassNotFoundException"));
+ Assert.assertFalse(pr.stdout.length() > 2);
+ Assert.assertFalse(pr.wasTerminated);
+ Assert.assertEquals((Integer) 0, pr.returnValue);
+ }
+}
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AddShutdownHook/resources/AddShutdownHook.jnlp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AddShutdownHook/resources/AddShutdownHook.jnlp Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0"
+ codebase="./"
+ href="AddShutdownHook.jnlp">
+ <information>
+ <title>test adding shutdown hooks</title>
+ </information>
+ <resources>
+ <jar href="AddShutdownHook.jar" main="true" download="eager"/>
+ </resources>
+ <application-desc main-class="AddShutdownHook"/>
+</jnlp>
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AddShutdownHook/srcs/AddShutdownHook.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AddShutdownHook/srcs/AddShutdownHook.java Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,48 @@
+/* AddShutdownHook.java
+Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+public class AddShutdownHook {
+ public static void main(String[] args) {
+
+ Runtime.getRuntime().addShutdownHook(new Thread() {
+ public void run() {
+ // no op
+ }
+ });
+
+ }
+}
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AddShutdownHook/testcases/AddShutdownHookTest.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AddShutdownHook/testcases/AddShutdownHookTest.java Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,59 @@
+/* AddShutdownHookTest.java
+Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+import net.sourceforge.jnlp.ServerAccess;
+import org.junit.Assert;
+
+import org.junit.Test;
+
+public class AddShutdownHookTest {
+
+ private static ServerAccess server = new ServerAccess();
+
+ @Test
+ public void AddShutdownHookTestLunch1() throws Exception {
+ System.out.println("connecting AddShutdownHook request");
+ ServerAccess.ProcessResult pr = server.executeJavawsHeadless(null, "/AddShutdownHook.jnlp");
+ System.out.println(pr.stdout);
+ System.err.println(pr.stderr);
+ Assert.assertTrue(pr.stderr.contains("java.security.AccessControlException: access denied (java.lang.RuntimePermission shutdownHooks)"));
+ Assert.assertFalse(pr.stderr.contains("ClassNotFoundException"));
+ Assert.assertFalse(pr.stdout.length() > 2);
+ Assert.assertFalse(pr.wasTerminated);
+ Assert.assertEquals((Integer) 0, pr.returnValue);
+ }
+}
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AllStackTraces/resources/AllStackTraces.jnlp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AllStackTraces/resources/AllStackTraces.jnlp Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0"
+ codebase="./"
+ href="AllStackTraces.jnlp">
+ <information>
+ <title>Test Thread.getAllStackTraces</title>
+ </information>
+ <resources>
+ <jar href="AllStackTraces.jar" main="true" download="eager"/>
+ </resources>
+ <application-desc main-class="AllStackTraces"/>
+</jnlp>
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AllStackTraces/srcs/AllStackTraces.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AllStackTraces/srcs/AllStackTraces.java Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,42 @@
+/* AllStackTraces.java
+Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+public class AllStackTraces {
+ public static void main(String[] args) {
+ Thread.getAllStackTraces();
+ }
+}
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/AllStackTraces/testcases/AllStackTracesTest.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/AllStackTraces/testcases/AllStackTracesTest.java Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,62 @@
+/* AllStackTracesTest.java
+Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+import net.sourceforge.jnlp.ServerAccess;
+import org.junit.Assert;
+
+import org.junit.Test;
+
+public class AllStackTracesTest {
+
+ private static ServerAccess server = new ServerAccess();
+
+
+
+ @Test
+ public void AddShutdownHookTestLunch1() throws Exception {
+ System.out.println("connecting AllStackTraces request");
+ ServerAccess.ProcessResult pr=server.executeJavawsHeadless(null,"/AllStackTraces.jnlp");
+ System.out.println(pr.stdout);
+ System.err.println(pr.stderr);
+ Assert.assertTrue(pr.stderr.contains("java.security.AccessControlException: access denied (java.lang.RuntimePermission getStackTrace)"));
+ Assert.assertFalse(pr.stderr.contains("ClassNotFoundException"));
+ Assert.assertFalse(pr.stdout.length()>2);
+ Assert.assertFalse(pr.wasTerminated);
+ Assert.assertEquals((Integer)0, pr.returnValue);
+ }
+
+ }
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/CreateClassLoader/resources/CreateClassLoader.jnlp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/CreateClassLoader/resources/CreateClassLoader.jnlp Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0"
+ codebase="./"
+ href="CreateClassLoader.jnlp">
+ <information>
+ <title>set context classloader</title>
+ </information>
+ <resources>
+ <jar href="CreateClassLoader.jar" main="true" download="eager"/>
+ </resources>
+ <application-desc main-class="CreateClassLoader"/>
+</jnlp>
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/CreateClassLoader/srcs/CreateClassLoader.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/CreateClassLoader/srcs/CreateClassLoader.java Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,46 @@
+/* CreateClassLoader.java
+Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+import java.net.URL;
+import java.net.URLClassLoader;
+
+public class CreateClassLoader {
+ public static void main(String[] args) throws Exception {
+ URLClassLoader ucl = new URLClassLoader(new URL[0]);
+
+ }
+}
diff -r e54277aefdaf -r 63bb7f2b0604 tests/jnlp_tests/simple/CreateClassLoader/testcases/CreateClassLoaderTest.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/CreateClassLoader/testcases/CreateClassLoaderTest.java Tue Jun 21 16:22:09 2011 +0200
@@ -0,0 +1,59 @@
+/* CreateClassLoaderTest.java
+Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
More information about the distro-pkg-dev
mailing list