mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-0: Ignore testUndo stuff with Object-based managers.
This commit is contained in:
parent
0820d96ec4
commit
363ffcbbd7
1 changed files with 15 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue