diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-10-22 20:08:56 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-22 20:08:56 +0000 |
commit | d9bebeb2be58ce1c363d5f38179cd15d6ff1fa06 (patch) | |
tree | 55a39a0f9828364c272417c0a3724eb831ffec03 | |
parent | bc095dbe688df9bf4e83bba336742ff05f552673 (diff) | |
download | bcm5719-llvm-d9bebeb2be58ce1c363d5f38179cd15d6ff1fa06.tar.gz bcm5719-llvm-d9bebeb2be58ce1c363d5f38179cd15d6ff1fa06.zip |
Comment out the debug statement for printing the SBBreakpoint object.
llvm-svn: 117140
-rw-r--r-- | lldb/test/breakpoint_conditions/TestBreakpointConditions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py index 74b71d675c0..e1c9dcac9d6 100644 --- a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py +++ b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py @@ -83,7 +83,7 @@ class BreakpointConditionsTestCase(TestBase): # Now create a breakpoint on main.c by name 'c'. breakpoint = target.BreakpointCreateByName('c', 'a.out') - print "breakpoint:", breakpoint + #print "breakpoint:", breakpoint self.assertTrue(breakpoint.IsValid() and breakpoint.GetNumLocations() == 1, VALID_BREAKPOINT) |