PageRenderTime 31ms CodeModel.GetById 8ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/java/sizet_runme.java

#
Java | 24 lines | 21 code | 3 blank | 0 comment | 2 complexity | 896012352c2c4ec9a5ea966655f51cb6 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. import sizet.*;
  2. public class sizet_runme {
  3. static {
  4. try {
  5. System.loadLibrary("sizet");
  6. } catch (UnsatisfiedLinkError e) {
  7. 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);
  8. System.exit(1);
  9. }
  10. }
  11. public static void main(String argv[]) throws Throwable
  12. {
  13. long s = 2000;
  14. s = sizet.test1(s+1);
  15. s = sizet.test2(s+1);
  16. s = sizet.test3(s+1);
  17. s = sizet.test4(s+1);
  18. if (s != 2004)
  19. throw new RuntimeException("failed");
  20. }
  21. }