blob: 4bfffe9877417f8c1c7891e09b08a90b1568ae84 [file] [log] [blame]
package com.mesonbuild;
public final class JniTest {
private static native int jni_test();
public static void main(String[] args) {
if (jni_test() != Configured.FINGERPRINT) {
throw new RuntimeException("jdk_test() did not return 0");
}
}
static {
System.loadLibrary("jnijava");
}
}