diff options
Diffstat (limited to 'lldb/test/stl/TestSTL.py')
-rw-r--r-- | lldb/test/stl/TestSTL.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/test/stl/TestSTL.py b/lldb/test/stl/TestSTL.py index 15421a6b15c..e909e51898a 100644 --- a/lldb/test/stl/TestSTL.py +++ b/lldb/test/stl/TestSTL.py @@ -31,7 +31,7 @@ class TestSTL(TestBase): BREAKPOINT_CREATED) self.ci.HandleCommand("run", res) - #time.sleep(0.1) + self.runStarted = True self.assertTrue(res.Succeeded(), RUN_STOPPED) # Stop at 'std::string hello_world ("Hello World!");'. @@ -70,9 +70,6 @@ class TestSTL(TestBase): output.find('stop reason = step in,') > 0, "Command 'thread backtrace' shows we stepped in STL") - self.ci.HandleCommand("continue", res) - self.assertTrue(res.Succeeded()) - if __name__ == '__main__': import atexit |