Browse Source

!14938 fix debugger recheck

From: @john_tzanakakis
Reviewed-by: @yelihua,@lixiaohui33
Signed-off-by: @lixiaohui33
tags/v1.2.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
64f29e1c1c
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      mindspore/ccsrc/debug/debugger/debugger.cc

+ 4
- 2
mindspore/ccsrc/debug/debugger/debugger.cc View File

@@ -622,8 +622,10 @@ void Debugger::CommandLoop() {
break;
case DebuggerCommand::kRunCMD:
ProcessRunCMD(reply);
// exit loop
run = true;
if (GetRunLevel(reply) != "recheck") {
// exit loop
run = true;
}
break;
case DebuggerCommand::kSetCMD:
ProcessKSetCMD(reply);


Loading…
Cancel
Save