2430dfac31
These are currently not intended to run with the rest of testsuite, as they require dependencies and special environment setup anyway (drafted in tests/jni/README).
10 lines
149 B
Python
10 lines
149 B
Python
import sys
|
|
try:
|
|
import jni
|
|
System = jni.cls("java/lang/System")
|
|
except:
|
|
print("SKIP")
|
|
sys.exit()
|
|
|
|
System.out.println("Hello, Java!")
|