forked from qt-creator/qt-creator
Debugger: Fix LLDB message parsing in dumper tests
Was off by one, swallowing the first character of the message. Change-Id: I736cadda2cb6d9e3703d276b631e574c498af874 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -2047,7 +2047,7 @@ void tst_Dumpers::dumper()
|
||||
pos1 = fullOutput.indexOf("bridgemessage={msg=", pos2 + 1);
|
||||
if (pos1 == -1)
|
||||
break;
|
||||
pos1 += 21;
|
||||
pos1 += 20;
|
||||
pos2 = fullOutput.indexOf("\"}", pos1 + 1);
|
||||
if (pos2 == -1)
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user