From b5a53c0d7cc1f04e22803f977532bec5223e246c Mon Sep 17 00:00:00 2001 From: Alvaro Sanchez-Leon Date: Mon, 19 Aug 2013 11:07:38 -0400 Subject: NEW - bug 415100: [run control] Assertion in all-stop when doing step into selection https://bugs.eclipse.org/bugs/show_bug.cgi?id=415100 Change-Id: I6fd4b6b50090e39f11569862dea9f616fdb95e74 Signed-off-by: Alvaro Sanchez-Leon Reviewed-on: https://git.eclipse.org/r/15609 Reviewed-by: Marc Khouzam IP-Clean: Marc Khouzam Tested-by: Marc Khouzam --- .../src/org/eclipse/cdt/dsf/gdb/service/GDBRunControl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GDBRunControl.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GDBRunControl.java index d8bbebf4277..b31903385da 100644 --- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GDBRunControl.java +++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GDBRunControl.java @@ -467,10 +467,10 @@ public class GDBRunControl extends MIRunControl { if (fStepInToSelectionActiveOperation.getThreadContext().equals(threadDmc)) { final MIFrame frame = e.getFrame(); - assert(fStepInToSelectionActiveOperation.getLine() == frame.getLine()); assert(fRunToLineActiveOperation == null); if (fStepInToSelectionActiveOperation.getRunToLineFrame() == null) { + assert(fStepInToSelectionActiveOperation.getLine() == frame.getLine()); // Shall now be at the runToline location fStepInToSelectionActiveOperation.setRunToLineFrame(frame); } -- cgit v1.2.3