Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlvaro Sanchez-Leon2013-08-19 15:07:38 +0000
committerMarc Khouzam2013-08-30 13:17:37 +0000
commitb5a53c0d7cc1f04e22803f977532bec5223e246c (patch)
treec8b9bf7c6db6c52fe9d232bb446291b315935ad7
parent3edcac7cc754562950c81b248ff69a19b9e133ae (diff)
downloadorg.eclipse.cdt-b5a53c0d7cc1f04e22803f977532bec5223e246c.tar.gz
org.eclipse.cdt-b5a53c0d7cc1f04e22803f977532bec5223e246c.tar.xz
org.eclipse.cdt-b5a53c0d7cc1f04e22803f977532bec5223e246c.zip
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 <alvsan09@gmail.com> Reviewed-on: https://git.eclipse.org/r/15609 Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com> IP-Clean: Marc Khouzam <marc.khouzam@ericsson.com> Tested-by: Marc Khouzam <marc.khouzam@ericsson.com>
-rw-r--r--dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GDBRunControl.java2
1 files changed, 1 insertions, 1 deletions
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);
}

Back to the top