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:
hjk
2020-12-10 15:26:15 +01:00
parent 598bcc8f1e
commit 5cf60fc38f
+1 -1
View File
@@ -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;