diff options
Diffstat (limited to 'lldb/test/load_unload/TestLoadUnload.py')
-rw-r--r-- | lldb/test/load_unload/TestLoadUnload.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/test/load_unload/TestLoadUnload.py b/lldb/test/load_unload/TestLoadUnload.py index 65da3012934..16629e50b82 100644 --- a/lldb/test/load_unload/TestLoadUnload.py +++ b/lldb/test/load_unload/TestLoadUnload.py @@ -28,7 +28,7 @@ class TestLoadUnload(TestBase): BREAKPOINT_CREATED) self.ci.HandleCommand("run", res) - #time.sleep(0.1) + self.runStarted = True self.assertTrue(res.Succeeded(), RUN_STOPPED) # The stop reason of the thread should be breakpoint and at a_function. @@ -47,9 +47,6 @@ class TestLoadUnload(TestBase): self.assertTrue(res.GetOutput().find(' resolved, hit count = 1') > 0, BREAKPOINT_HIT_ONCE) - self.ci.HandleCommand("continue", res) - self.assertTrue(res.Succeeded()) - # # We should stop agaian at a_function. # # The stop reason of the thread should be breakpoint and at a_function. # self.ci.HandleCommand("thread list", res) |