GP-930: Various improvements and fixes for Windows debugging

This commit is contained in:
d-millar 2021-05-06 22:02:33 +00:00 committed by Dan
parent a1cfeebcc9
commit 10674175bb
39 changed files with 438 additions and 246 deletions

View file

@ -15,6 +15,9 @@
*/
package agent.dbgeng.model.invm;
import org.junit.Ignore;
import org.junit.Test;
import agent.dbgeng.model.AbstractModelForDbgengRootAttacherTest;
public class InVmModelForDbgengRootAttacherTest extends AbstractModelForDbgengRootAttacherTest {
@ -22,4 +25,12 @@ public class InVmModelForDbgengRootAttacherTest extends AbstractModelForDbgengRo
public ModelHost modelHost() throws Throwable {
return new InVmDbgengModelHost();
}
@Override
@Ignore
@Test
// Takes forever - passes w/ OTE on Memory in tear down
public void testAttachByPidThenResumeInterrupt() throws Throwable {
super.testAttachByPidThenResumeInterrupt();
}
}