aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2005-02-14 14:57:37 +0000
committerAnthony Green <green@gcc.gnu.org>2005-02-14 14:57:37 +0000
commitd633cfe524a361b4a5d1845e9b7fb78c2d813d7c (patch)
tree8f2311990fa1769a62f318958162b80d0cdcfcd5 /libjava/testsuite
parent92d2b330de38224e6b6de699baa5ee3436c2dbb6 (diff)
downloadgcc-d633cfe524a361b4a5d1845e9b7fb78c2d813d7c.zip
gcc-d633cfe524a361b4a5d1845e9b7fb78c2d813d7c.tar.gz
gcc-d633cfe524a361b4a5d1845e9b7fb78c2d813d7c.tar.bz2
re PR libgcj/18116 (JNI uses dot instead of slash as the package separator)
2005-02-14 Anthony Green <green@redhat.com> PR libgcj/18116 * testsuite/libjava.jni/PR18116.c: New file. * testsuite/libjava.jni/PR18116.java: New file. * testsuite/libjava.jni/PR18116.out: New file. From-SVN: r95014
Diffstat (limited to 'libjava/testsuite')
-rw-r--r--libjava/testsuite/libjava.jni/PR18116.c35
-rw-r--r--libjava/testsuite/libjava.jni/PR18116.java16
-rw-r--r--libjava/testsuite/libjava.jni/PR18116.out1
3 files changed, 52 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.jni/PR18116.c b/libjava/testsuite/libjava.jni/PR18116.c
new file mode 100644
index 0000000..bcd1433
--- /dev/null
+++ b/libjava/testsuite/libjava.jni/PR18116.c
@@ -0,0 +1,35 @@
+#include <stdlib.h>
+#include <assert.h>
+#include <PR18116.h>
+
+// The purpose of this test is to ensure that signatures with non-top
+// level class arguments work.
+
+static jint
+some_random_name (JNIEnv *env, jclass k, jobject v)
+{
+ return 555;
+}
+
+JNIEXPORT jint JNICALL
+JNI_OnLoad (JavaVM *vm, void *nothing)
+{
+ JNIEnv *env;
+ JNINativeMethod meth;
+ jclass k;
+ jint r;
+
+ r = (*vm)->GetEnv (vm, (void **) &env, JNI_VERSION_1_2);
+ assert (r == JNI_OK);
+ k = (*env)->FindClass (env, "PR18116");
+ assert (k != NULL);
+
+ meth.name = "doit";
+ meth.signature = "(Ljava/lang/String;)I";
+ meth.fnPtr = some_random_name;
+
+ r = (*env)->RegisterNatives (env, k, &meth, 1);
+ assert (r == JNI_OK);
+
+ return JNI_VERSION_1_2;
+}
diff --git a/libjava/testsuite/libjava.jni/PR18116.java b/libjava/testsuite/libjava.jni/PR18116.java
new file mode 100644
index 0000000..d582132
--- /dev/null
+++ b/libjava/testsuite/libjava.jni/PR18116.java
@@ -0,0 +1,16 @@
+// PR18116.java - Test RegisterNatives with more complex signatures.
+
+public class PR18116
+{
+ static
+ {
+ System.loadLibrary ("PR18116");
+ }
+
+ public static native int doit (java.lang.String s);
+
+ public static void main (String[] args)
+ {
+ System.out.println (doit ("Hello World!"));
+ }
+}
diff --git a/libjava/testsuite/libjava.jni/PR18116.out b/libjava/testsuite/libjava.jni/PR18116.out
new file mode 100644
index 0000000..3749383
--- /dev/null
+++ b/libjava/testsuite/libjava.jni/PR18116.out
@@ -0,0 +1 @@
+555