diff options
Diffstat (limited to 'tests/jni/system_out.py')
-rw-r--r-- | tests/jni/system_out.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/jni/system_out.py b/tests/jni/system_out.py new file mode 100644 index 000000000..7a1f18030 --- /dev/null +++ b/tests/jni/system_out.py @@ -0,0 +1,9 @@ +import sys +try: + import jni + System = jni.cls("java/lang/System") +except: + print("SKIP") + sys.exit() + +System.out.println("Hello, Java!") |