also fixing JNI library name in JUnit tests

pull/1258/head
Andrey Pavlenko 12 years ago
parent d4e098f401
commit 4902db1c42
  1. 2
      modules/java/test/src/org/opencv/test/OpenCVTestCase.java

@ -97,7 +97,7 @@ public class OpenCVTestCase extends TestCase {
super.setUp();
try {
System.loadLibrary("opencv_java");
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
} catch (SecurityException e) {
System.out.println(e.toString());
System.exit(-1);

Loading…
Cancel
Save