mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-19 16:40:38 -09:00
GP-2068: Indexing, caching, other optimizations for TraceRmi.
This commit is contained in:
@@ -761,7 +761,7 @@ public class DbgEngCommandsTest extends AbstractDbgEngTraceRmiTest {
|
||||
Map.entry("[1]", Lifespan.nowOn(0)),
|
||||
Map.entry("[2]", Lifespan.span(0, 9)),
|
||||
Map.entry("[3]", Lifespan.nowOn(0))),
|
||||
object.getValues()
|
||||
object.getValues(Lifespan.ALL)
|
||||
.stream()
|
||||
.collect(Collectors.toMap(v -> v.getEntryKey(), v -> v.getLifespan())));
|
||||
}
|
||||
|
||||
@@ -786,7 +786,7 @@ public class GdbCommandsTest extends AbstractGdbTraceRmiTest {
|
||||
Map.entry("[1]", Lifespan.nowOn(0)),
|
||||
Map.entry("[2]", Lifespan.span(0, 9)),
|
||||
Map.entry("[3]", Lifespan.nowOn(0))),
|
||||
object.getValues()
|
||||
object.getValues(Lifespan.ALL)
|
||||
.stream()
|
||||
.collect(Collectors.toMap(v -> v.getEntryKey(), v -> v.getLifespan())));
|
||||
}
|
||||
|
||||
@@ -810,7 +810,7 @@ public class LldbCommandsTest extends AbstractLldbTraceRmiTest {
|
||||
Map.entry("[1]", Lifespan.nowOn(0)),
|
||||
Map.entry("[2]", Lifespan.span(0, 9)),
|
||||
Map.entry("[3]", Lifespan.nowOn(0))),
|
||||
object.getValues()
|
||||
object.getValues(Lifespan.ALL)
|
||||
.stream()
|
||||
.collect(Collectors.toMap(v -> v.getEntryKey(), v -> v.getLifespan())));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user