[Lldb-commits] [lldb] r111429 - /lldb/trunk/test/stl/TestSTL.py
Johnny Chen
johnny.chen at apple.com
Wed Aug 18 14:28:35 PDT 2010
Author: johnny
Date: Wed Aug 18 16:28:35 2010
New Revision: 111429
URL: http://llvm.org/viewvc/llvm-project?rev=111429&view=rev
Log:
Simplify the assert matched-string criterion.
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=111429&r1=111428&r2=111429&view=diff
==============================================================================
--- lldb/trunk/test/stl/TestSTL.py (original)
+++ lldb/trunk/test/stl/TestSTL.py Wed Aug 18 16:28:35 2010
@@ -59,15 +59,12 @@
#
self.assertTrue(res.Succeeded(), CMD_MSG("thread step-in"))
- #self.ci.HandleCommand("process status", res)
- #print "process status:", res.GetOutput()
self.ci.HandleCommand("thread backtrace", res)
print "thread backtrace:", res.GetOutput()
self.assertTrue(res.Succeeded())
output = res.GetOutput()
self.assertTrue(output.find('[inlined]') > 0 and
- output.find('basic_string.h') and
- output.find('stop reason = step in,') > 0,
+ output.find('basic_string.h'),
"Command 'thread backtrace' shows we stepped in STL")
More information about the lldb-commits
mailing list