[Lldb-commits] [lldb] r164544 - /lldb/trunk/test/lldbutil.py

Jim Ingham jingham at apple.com
Mon Sep 24 11:11:54 PDT 2012


Author: jingham
Date: Mon Sep 24 13:11:54 2012
New Revision: 164544

URL: http://llvm.org/viewvc/llvm-project?rev=164544&view=rev
Log:
Remove a couple of debugging printf's from the testsuite.

Modified:
    lldb/trunk/test/lldbutil.py

Modified: lldb/trunk/test/lldbutil.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbutil.py?rev=164544&r1=164543&r2=164544&view=diff
==============================================================================
--- lldb/trunk/test/lldbutil.py (original)
+++ lldb/trunk/test/lldbutil.py Mon Sep 24 13:11:54 2012
@@ -369,7 +369,6 @@
                 r"^Breakpoint (?P<bpno>[0-9]+): where = (?P<module>.*)`(?P<symbol>.*)( \+ (?P<offset>[0-9]+)){0,1}, address = (?P<address>0x[0-9a-fA-F]+)$"]
     match_object = test.match (command, patterns)
     break_results = match_object.groupdict()
-    print "Break results: ", break_results
 
     # We always insert the breakpoint number, setting it to -1 if we couldn't find it
     # Also, make sure it gets stored as an integer.
@@ -405,7 +404,6 @@
 
     out_num_locations = break_results['num_locations']
 
-    print "Num locations: ", num_locations, " and out num locations: ", out_num_locations
     if num_locations == -1:
         test.assertTrue (out_num_locations > 0, "Expecting one or more locations, got none.")
     else:





More information about the lldb-commits mailing list