/tags/rel-1.3.35/Examples/test-suite/java/profiletest_runme.java
# · Java · 15 lines · 11 code · 4 blank · 0 comment · 1 complexity · fb979f377980877ecceab1a4d7300381 MD5 · raw file
- import profiletest.*;
- public class profiletest_runme {
- System.loadLibrary("profiletest");
- public static void main(String argv[]) {
-
- long a = profiletest.new_A();
- long b = profiletest.new_B();
- for (int i=0; i<1000000; i++) {
- a = profiletest.B_fn(b, a);
- }
- }
- }