diff options
Diffstat (limited to 'lldb/test/global_variables/TestGlobalVariables.py')
-rw-r--r-- | lldb/test/global_variables/TestGlobalVariables.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/test/global_variables/TestGlobalVariables.py b/lldb/test/global_variables/TestGlobalVariables.py index 0cc557fe6d5..ceb7c4dfc34 100644 --- a/lldb/test/global_variables/TestGlobalVariables.py +++ b/lldb/test/global_variables/TestGlobalVariables.py @@ -24,7 +24,7 @@ class TestGlobalVariables(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. @@ -53,9 +53,6 @@ class TestGlobalVariables(TestBase): output.find('g_file_global_cstr') > 0, VARIABLES_DISPLAYED_CORRECTLY) - self.ci.HandleCommand("continue", res) - self.assertTrue(res.Succeeded()) - if __name__ == '__main__': import atexit |