GP-0: Debugger test fixes.

This commit is contained in:
Dan 2021-07-22 13:04:03 -04:00
parent 8d63a9a3ab
commit b813c86bf1
3 changed files with 12 additions and 4 deletions

View file

@ -67,7 +67,7 @@ public class GdbModelTargetProcessMemory
synchronized (this) {
regions =
byStart.values().stream().map(this::getTargetRegion).collect(Collectors.toList());
if (regions.isEmpty()) {
if (regions.isEmpty() && valid) {
Map<BigInteger, GdbMemoryMapping> defaultMap =
new HashMap<BigInteger, GdbMemoryMapping>();
AddressSet addressSet = impl.getAddressFactory().getAddressSet();