[Lldb-commits] [lldb] r190622 - test: Add @expectedFailureFreeBSD decorator
Ed Maste
emaste at freebsd.org
Thu Sep 12 11:37:43 PDT 2013
Author: emaste
Date: Thu Sep 12 13:37:42 2013
New Revision: 190622
URL: http://llvm.org/viewvc/llvm-project?rev=190622&view=rev
Log:
test: Add @expectedFailureFreeBSD decorator
llvm.org/pr17213 Expression evaluation fails on FreeBSD in some cases
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=190622&r1=190621&r2=190622&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py Thu Sep 12 13:37:42 2013
@@ -34,12 +34,14 @@ class BreakpointConditionsTestCase(TestB
self.buildDsym()
self.breakpoint_conditions_python()
+ @expectedFailureFreeBSD('llvm.org/pr17213')
@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()
+ @expectedFailureFreeBSD('llvm.org/pr17213')
@dwarf_test
def test_breakpoint_condition_inline_with_dwarf_and_run_command(self):
"""Exercise breakpoint condition inline with 'breakpoint set'."""
More information about the lldb-commits
mailing list