diff options
Diffstat (limited to 'lldb/tools/lldb-perf/lib/TestCase.cpp')
-rw-r--r-- | lldb/tools/lldb-perf/lib/TestCase.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/tools/lldb-perf/lib/TestCase.cpp b/lldb/tools/lldb-perf/lib/TestCase.cpp index b3aef6e8d6e..9d58fa2061d 100644 --- a/lldb/tools/lldb-perf/lib/TestCase.cpp +++ b/lldb/tools/lldb-perf/lib/TestCase.cpp @@ -255,6 +255,7 @@ TestCase::Loop () if (call_test_step) { + do_the_call: if (m_verbose) printf("RUNNING STEP %d\n",m_step); ActionWanted action; @@ -305,6 +306,9 @@ TestCase::Loop () printf("kill\n"); m_process.Kill(); return; + case ActionWanted::Type::eCallNext: + goto do_the_call; + break; } } |