[Lldb-commits] [lldb] r109678 - /lldb/trunk/test/stl/TestSTL.py
Johnny Chen
johnny.chen at apple.com
Wed Jul 28 15:00:42 PDT 2010
Author: johnny
Date: Wed Jul 28 17:00:42 2010
New Revision: 109678
URL: http://llvm.org/viewvc/llvm-project?rev=109678&view=rev
Log:
Add some comment about possible related bug info.
Modified:
lldb/trunk/test/stl/TestSTL.py
Modified: lldb/trunk/test/stl/TestSTL.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/stl/TestSTL.py?rev=109678&r1=109677&r2=109678&view=diff
==============================================================================
--- lldb/trunk/test/stl/TestSTL.py (original)
+++ lldb/trunk/test/stl/TestSTL.py Wed Jul 28 17:00:42 2010
@@ -22,6 +22,9 @@
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 @@
)
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 @@
#
# This assertion currently always fails.
+ # This might be related: rdar://problem/8247112.
#
self.assertTrue(res.Succeeded())
More information about the lldb-commits
mailing list