| 41 | public void testEmpty() { } |
| 42 | |
| 43 | private static class JNILibrary { |
| 44 | static { |
| 45 | String path = TESTPATH + NativeLibrary.mapSharedLibraryName("testlib");; |
| 46 | if (!new File(path).isAbsolute()) { |
| 47 | path = new File(path).getAbsolutePath(); |
| 48 | } |
| 49 | System.load(path); |
| 50 | } |
| 51 | |
| 52 | private static native double cos(double x); |
| 53 | private static native int getpid(); |
| 54 | } |
| 55 | |
| 56 | public static void main(java.lang.String[] argList) { |
| 57 | checkPerformance(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…