GP-0: Ignore testUndo stuff with Object-based managers.

This commit is contained in:
Dan 2024-02-16 10:00:40 -05:00
parent 0820d96ec4
commit 363ffcbbd7

View file

@ -15,7 +15,7 @@
*/
package ghidra.trace.database.module;
import org.junit.Before;
import org.junit.*;
import db.Transaction;
import ghidra.dbg.target.schema.SchemaContext;
@ -54,4 +54,18 @@ public class DBTraceModuleManagerObjectTest extends DBTraceModuleManagerTest {
b.trace.getObjectManager().createRootObject(ctx.getSchema(new SchemaName("Session")));
}
}
@Test
@Override
@Ignore // Undo not supported with object-manager's write-back cache
public void testUndoIdentitiesPreserved() throws Exception {
super.testUndoIdentitiesPreserved();
}
@Test
@Override
@Ignore // Undo not supported with object-manager's write-back cache
public void testUndoThenRedo() throws Exception {
super.testUndoThenRedo();
}
}