Merge remote-tracking branch 'origin/patch'

This commit is contained in:
ghidra1 2022-01-06 11:52:01 -05:00
commit 676d159d27
5 changed files with 37 additions and 1 deletions

View file

@ -28,6 +28,7 @@ import ghidra.pcode.emu.*;
import ghidra.pcode.exec.*;
import ghidra.program.model.address.Address;
import ghidra.program.model.lang.*;
import ghidra.program.model.listing.Instruction;
import ghidra.test.AbstractGhidraHeadlessIntegrationTest;
import ghidra.test.ToyProgramBuilder;
import ghidra.trace.database.ToyDBTraceBuilder;
@ -333,6 +334,11 @@ public class TraceScheduleTest extends AbstractGhidraHeadlessIntegrationTest {
public PcodeFrame getFrame() {
return null;
}
@Override
public Instruction getInstruction() {
return null;
}
@Override
public void executeInstruction() {