mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
commit
48b98fe517
2 changed files with 8 additions and 1 deletions
|
@ -35,6 +35,12 @@ public class DbgengX64DebuggerMappingOpinion implements DebuggerMappingOpinion {
|
|||
@Override
|
||||
protected String normalizeName(String name) {
|
||||
name = super.normalizeName(name);
|
||||
if ("efl".equals(name)) {
|
||||
return "eflags";
|
||||
}
|
||||
if ("rfl".equals(name)) {
|
||||
return "eflags";
|
||||
}
|
||||
if ("rflags".equals(name)) {
|
||||
return "eflags";
|
||||
}
|
||||
|
|
|
@ -91,7 +91,8 @@ public class DebuggerTargetsProviderTest extends AbstractGhidraHeadedDebuggerGUI
|
|||
|
||||
createTestModel();
|
||||
waitForSwing();
|
||||
assertFalse(targetsProvider.actionDisconnect.isEnabled());
|
||||
// The first model is now selected automatically.
|
||||
//assertFalse(targetsProvider.actionDisconnect.isEnabled());
|
||||
|
||||
selectNodeForObject(targetsProvider, mb.testModel);
|
||||
waitForSwing();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue