diff options
author | Sven Gothel <[email protected]> | 2019-08-18 23:53:27 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-08-18 23:53:27 +0200 |
commit | 6f987f16c808242b61263d76bd7d72e148a0af24 (patch) | |
tree | 683d91bc5605e4a10897e70b2dafd65bc5680b46 /src/junit/com/jogamp/common | |
parent | 175392ceeba5f69aa5ac90e4021490ade742a323 (diff) |
Bug 1363: Java 11: Complete renaming JEP 178 compatible native lib basename gluegen-rt -> gluegen_rt
- Fix finding native library for Elf parsing
- Fix one unit test
- Fix comments
Completes commit 330dad069dee5a0cc0480cf5cd9052000004223a
Diffstat (limited to 'src/junit/com/jogamp/common')
-rw-r--r-- | src/junit/com/jogamp/common/util/TestTempJarCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/common/util/TestTempJarCache.java b/src/junit/com/jogamp/common/util/TestTempJarCache.java index 4ba09af..e059326 100644 --- a/src/junit/com/jogamp/common/util/TestTempJarCache.java +++ b/src/junit/com/jogamp/common/util/TestTempJarCache.java @@ -197,7 +197,7 @@ public class TestTempJarCache extends SingletonJunitCase { public void testTempJarCache02AddNativeLibs() throws IOException, IllegalArgumentException, URISyntaxException { if(AndroidVersion.isAvailable) { System.err.println("n/a on Android"); return; } final Uri.Encoded nativeJarName = Uri.Encoded.cast("gluegen-rt-natives-"+Platform.getOSAndArch()+".jar"); - final String libBaseName = "gluegen-rt"; + final String libBaseName = "gluegen_rt"; final ClassLoader cl = getClass().getClassLoader(); final Uri jarUri = JarUtil.getJarUri(TempJarCache.class.getName(), cl); |