summaryrefslogtreecommitdiffstats
path: root/test/junit/com/sun/gluegen/BasicTest.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-03-25 13:07:58 +0100
committerSven Gothel <[email protected]>2010-03-25 13:07:58 +0100
commit3a32650d4229f9b4ad1f527d9e30c24ddb69bb3f (patch)
treeb60ea7924b346924b754be03e5467fc62a7dbe1e /test/junit/com/sun/gluegen/BasicTest.java
parente6288285daf2e2fc16980cd74190e46aad5464be (diff)
http://www.jogamp.org/bugzilla/show_bug.cgi?id=390
The current junit tests use a fixed 'build' sub-path, not the customizing 'rootrel.build' path. More properties needs to be passed through (ant -> junit -> ant) to comply with the current build system: * rootrel.build * os.arch * gluegen.user.compiler.file Fixed .. However .. since even more properties may influence the build, a more native solution with just plain 'ant' might be more desireable ..
Diffstat (limited to 'test/junit/com/sun/gluegen/BasicTest.java')
-rw-r--r--test/junit/com/sun/gluegen/BasicTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/junit/com/sun/gluegen/BasicTest.java b/test/junit/com/sun/gluegen/BasicTest.java
index a43d3e5..144128c 100644
--- a/test/junit/com/sun/gluegen/BasicTest.java
+++ b/test/junit/com/sun/gluegen/BasicTest.java
@@ -44,7 +44,7 @@ public class BasicTest {
@Test
public void bindingTest() throws Exception {
- String nativesPath = gluegenRoot + "/build/test/build/natives";
+ String nativesPath = testOutput + "/build/natives";
System.load(nativesPath + "/librofl.so");
Class<?> clazz = Class.forName("test.BindingTest");