Include prev invokes for deciding if weve jumped before, fixes the graph jump test

This commit is contained in:
Adam
2015-11-14 20:33:38 -05:00
parent a867b7af9d
commit 337e98fb95
5 changed files with 147 additions and 72 deletions

View File

@@ -0,0 +1,19 @@
package net.runelite.deob.execution;
import java.io.File;
import net.runelite.deob.ClassGroup;
import net.runelite.deob.util.JarUtil;
import org.junit.Test;
public class ExecutionTest
{
@Test
public void test() throws Exception
{
ClassGroup group = JarUtil.loadJar(new File("d:/rs/07/adamin1.jar"));
Execution e = new Execution(group);
e.populateInitialMethods();
e.run();
}
}