mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
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>
This commit is contained in:
parent
3edcac7cc7
commit
b5a53c0d7c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue