File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
src/test/java/mujoco/java Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,10 @@ cd $SCRIPT_DIR/
76
76
echo " Resource File: "
77
77
ls -al $JAVADIR ../resources/$TYPE
78
78
./gradlew jar --stacktrace test
79
+ # ls -al $HOME/.javacpp/
80
+ # ls -al $HOME/.javacpp/cache/
81
+ # ls -al $HOME/.javacpp/cache/mujoco-java-*/
82
+ # ls -al $HOME/.javacpp/cache/mujoco-java-*/$TYPE/
79
83
80
84
81
85
Original file line number Diff line number Diff line change 8
8
9
9
import static org .junit .Assert .*;
10
10
11
+ import java .util .logging .Level ;
12
+ import java .util .logging .Logger ;
13
+
14
+ import org .bytedeco .javacpp .Loader ;
15
+
11
16
public class MuJoColibTest {
12
17
@ Test public void mujocoJNILoadTest () {
13
- MuJoCoLib lib = new MuJoCoLib ();
18
+ System .out .println (System .getProperty ("org.bytedeco.javacpp.logger.debug" ));
19
+ System .setProperty ("org.bytedeco.javacpp.logger.debug" , "true" );
20
+ MuJoCoLib lib = new MuJoCoLib ();
14
21
15
22
System .out .println ("Starting " +MuJoCoLib .mj_versionString ().getString ());
16
23
}
You can’t perform that action at this time.
0 commit comments