Execution test is inf looping with new frame/exec stuff, dont know why.

This commit is contained in:
Adam
2015-11-15 21:35:35 -05:00
parent 5e4458ae6e
commit ceafe5acec
4 changed files with 65 additions and 44 deletions

View File

@@ -12,8 +12,18 @@ public class ExecutionTest
{
ClassGroup group = JarUtil.loadJar(new File("d:/rs/07/adamin1.jar"));
System.out.println("Done loading jar " + System.currentTimeMillis() / 1000);
Execution e = new Execution(group);
//e.setBuildGraph(true);
//e.setFollowInvokes(false);
e.populateInitialMethods();
e.run();
System.out.println("Done exec " + System.currentTimeMillis() / 1000);
Runtime runtime = Runtime.getRuntime();
System.out.println("Total memory (MB) " + runtime.totalMemory()/1024L/1024L);
}
}