mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-0: Fixed debugger model testing under gradle
This commit is contained in:
parent
a9a6ecd56c
commit
6cfb32a6a3
1 changed files with 4 additions and 0 deletions
|
@ -56,6 +56,10 @@ public class DebuggerConsole extends Thread implements DebuggerModelListener, Au
|
|||
try {
|
||||
while (!closed) {
|
||||
String line = reader.readLine();
|
||||
if (line == null) {
|
||||
// NB. EOF happens immediately under Gradle
|
||||
return;
|
||||
}
|
||||
if (interpreter == null) {
|
||||
System.err.println("Have not found interpreter, yet");
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue