[Lldb-commits] [lldb] r109712 - /lldb/trunk/test/stl/TestSTL.py
Johnny Chen
johnny.chen at apple.com
Wed Jul 28 17:40:06 PDT 2010
Author: johnny
Date: Wed Jul 28 19:40:06 2010
New Revision: 109712
URL: http://llvm.org/viewvc/llvm-project?rev=109712&view=rev
Log:
Removed debug stmts checked into the previous commit.
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=109712&r1=109711&r2=109712&view=diff
==============================================================================
--- lldb/trunk/test/stl/TestSTL.py (original)
+++ lldb/trunk/test/stl/TestSTL.py Wed Jul 28 19:40:06 2010
@@ -22,9 +22,6 @@
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())
@@ -33,7 +30,7 @@
)
self.ci.HandleCommand("run", res)
- time.sleep(1)
+ time.sleep(0.1)
self.assertTrue(res.Succeeded())
# Stop at 'std::string hello_world ("Hello World!");'.
More information about the lldb-commits
mailing list