[Lldb-commits] [lldb] r173362 - /lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
Daniel Malea
daniel.malea at intel.com
Thu Jan 24 11:35:57 PST 2013
Author: dmalea
Date: Thu Jan 24 13:35:57 2013
New Revision: 173362
URL: http://llvm.org/viewvc/llvm-project?rev=173362&view=rev
Log:
PR14426 (breakpoint hit count incorrect) is resolved.
Modified:
lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py?rev=173362&r1=173361&r2=173362&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py Thu Jan 24 13:35:57 2013
@@ -34,21 +34,18 @@
self.buildDsym()
self.breakpoint_conditions_python()
- @expectedFailureLinux # bugzilla 14426
@dwarf_test
def test_breakpoint_condition_with_dwarf_and_run_command(self):
"""Exercise breakpoint condition with 'breakpoint modify -c <expr> id'."""
self.buildDwarf()
self.breakpoint_conditions()
- @expectedFailureLinux # bugzilla 14426
@dwarf_test
def test_breakpoint_condition_inline_with_dwarf_and_run_command(self):
"""Exercise breakpoint condition inline with 'breakpoint set'."""
self.buildDwarf()
self.breakpoint_conditions(inline=True)
- @expectedFailureLinux # bugzilla 14426
@python_api_test
@dwarf_test
def test_breakpoint_condition_with_dwarf_and_python_api(self):
More information about the lldb-commits
mailing list