Signed-off-by: Tomek Grabiec <[email protected]>
---
Makefile | 1 +
regression/jvm/ClassLoaderTest.java | 43 +++++++++++++++++++++++++++++++++++
regression/run-suite.sh | 1 +
3 files changed, 45 insertions(+), 0 deletions(-)
create mode 100644 regression/jvm/ClassLoaderTest.java
diff --git a/Makefile b/Makefile
index f98fc65..2ad7687 100644
--- a/Makefile
+++ b/Makefile
@@ -256,6 +256,7 @@ REGRESSION_TEST_SUITE_CLASSES = \
regression/jvm/BranchTest.java \
regression/jvm/CFGCrashTest.java \
regression/jvm/ClassExceptionsTest.java \
+ regression/jvm/ClassLoaderTest.java \
regression/jvm/CloneTest.java \
regression/jvm/ControlTransferTest.java \
regression/jvm/ConversionTest.java \
diff --git a/regression/jvm/ClassLoaderTest.java
b/regression/jvm/ClassLoaderTest.java
new file mode 100644
index 0000000..5830d1f
--- /dev/null
+++ b/regression/jvm/ClassLoaderTest.java
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2009 Tomasz Grabiec
+ *
+ * This file is released under the GPL version 2 with the following
+ * clarification and special exception:
+ *
+ * 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.
+ *
+ * Please refer to the file LICENSE for details.
+ */
+package jvm;
+
+/**
+ * @author Tomasz Grabiec
+ */
+public class ClassLoaderTest extends TestCase {
+ public static void testSystemClassLoaderLoadsAppClass() {
+ ClassLoader loader;
+
+ loader = ClassLoaderTest.class.getClassLoader();
+ assertNotNull(loader);
+ assertEquals(loader, ClassLoader.getSystemClassLoader());
+ }
+
+ public static void main(String []args) {
+ testSystemClassLoaderLoadsAppClass();
+ }
+}
diff --git a/regression/run-suite.sh b/regression/run-suite.sh
index 4c86fae..e8cbfe0 100755
--- a/regression/run-suite.sh
+++ b/regression/run-suite.sh
@@ -52,6 +52,7 @@ if [ -z "$CLASS_LIST" ]; then
run_java jvm.BranchTest 0
run_java jvm.CFGCrashTest 0
run_java jvm.ClassExceptionsTest 0
+ run_java jvm.ClassLoaderTest 0
run_java jvm.CloneTest 0
run_java jvm.ControlTransferTest 0
run_java jvm.ConversionTest 0
--
1.6.0.6
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now. http://p.sf.net/sfu/bobj-july
_______________________________________________
Jatovm-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jatovm-devel