mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +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 {
|
try {
|
||||||
while (!closed) {
|
while (!closed) {
|
||||||
String line = reader.readLine();
|
String line = reader.readLine();
|
||||||
|
if (line == null) {
|
||||||
|
// NB. EOF happens immediately under Gradle
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (interpreter == null) {
|
if (interpreter == null) {
|
||||||
System.err.println("Have not found interpreter, yet");
|
System.err.println("Have not found interpreter, yet");
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue