diff options
Diffstat (limited to 'lldb/test/stl/TestSTL.py')
-rw-r--r-- | lldb/test/stl/TestSTL.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/test/stl/TestSTL.py b/lldb/test/stl/TestSTL.py index 145ec6ab6be..a86ffafb476 100644 --- a/lldb/test/stl/TestSTL.py +++ b/lldb/test/stl/TestSTL.py @@ -22,6 +22,9 @@ class TestSTL(lldbtest.TestBase): self.ci.HandleCommand("file " + exe, res) self.assertTrue(res.Succeeded()) + self.ci.HandleCommand("run", res) + time.sleep(1) + # Break on line 13 of main.cpp. self.ci.HandleCommand("breakpoint set -f main.cpp -l 13", res) self.assertTrue(res.Succeeded()) @@ -30,7 +33,7 @@ class TestSTL(lldbtest.TestBase): ) self.ci.HandleCommand("run", res) - time.sleep(0.1) + time.sleep(1) self.assertTrue(res.Succeeded()) # Stop at 'std::string hello_world ("Hello World!");'. @@ -52,6 +55,7 @@ class TestSTL(lldbtest.TestBase): # # This assertion currently always fails. + # This might be related: rdar://problem/8247112. # self.assertTrue(res.Succeeded()) |