From 8a3dc91543a2a336a2b2be7471a83c553323f3fd Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 11 Aug 2006 22:32:19 +0000 Subject: [PATCH] director thread runtime test git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9243 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- .../java/director_thread_runme.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 SWIG/Examples/test-suite/java/director_thread_runme.java diff --git a/SWIG/Examples/test-suite/java/director_thread_runme.java b/SWIG/Examples/test-suite/java/director_thread_runme.java new file mode 100644 index 000000000..58212acfd --- /dev/null +++ b/SWIG/Examples/test-suite/java/director_thread_runme.java @@ -0,0 +1,35 @@ + +import director_thread.*; +import java.lang.reflect.*; + +public class director_thread_runme { + + static { + try { + System.loadLibrary("director_thread"); + } catch (UnsatisfiedLinkError e) { + System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e); + System.exit(1); + } + } + + public static void main(String argv[]) { + Derived d = new Derived(); + d.run(); + + if (d.getVal() >= 0) { + throw new RuntimeException("Failed. Val: " + d.getVal()); + } + } +} + +class Derived extends Foo { + Derived() { + super(); + } + + public void do_foo() { + setVal(getVal() - 1); + } +} +