Dumper: Remove old workaround

This part had been added for lldb provided by Xcode 8.
Even LLDB 3.10 is rather old, so probably no more necessary.

Change-Id: I823ee15869cc60cb8504fa6969758b5f7c3a74ab
Reviewed-by: David Schulz <david.schulz@qt.io>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2019-10-14 08:02:38 +02:00
parent 5b325b1748
commit 982344a799

View File

@@ -1585,8 +1585,6 @@ void tst_Dumpers::dumper()
debugger.setWorkingDirectory(t->buildPath); debugger.setWorkingDirectory(t->buildPath);
debugger.start(exe, args); debugger.start(exe, args);
QVERIFY(debugger.waitForStarted()); QVERIFY(debugger.waitForStarted());
// FIXME: next line is necessary for LLDB <= 310 - remove asap
debugger.waitForReadyRead(1000);
debugger.write(cmds.toLocal8Bit()); debugger.write(cmds.toLocal8Bit());
QVERIFY(debugger.waitForFinished()); QVERIFY(debugger.waitForFinished());
output = debugger.readAllStandardOutput(); output = debugger.readAllStandardOutput();