tests: Mark expected FreeBSD failures due to pr16697

llvm-svn: 187415
This commit is contained in:
Ed Maste 2013-07-30 13:08:24 +00:00
parent 9fbd981f99
commit 043370524d
8 changed files with 9 additions and 1 deletions

View File

@ -25,6 +25,7 @@ class ExprFormattersTestCase(TestBase):
self.buildDsym()
self.do_my_test()
@expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
@dwarf_test
def test_with_dwarf(self):
"""Test expr + formatters for good interoperability."""

View File

@ -180,6 +180,7 @@ class BasicExprCommandsTestCase(TestBase):
# rdar://problem/8686536
# CommandInterpreter::HandleCommand is stripping \'s from input for WantsRawCommand commands
@expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
def test_expr_commands_can_handle_quotes(self):
"""Throw some expression commands with quotes at lldb."""
self.buildDefault()

View File

@ -18,6 +18,7 @@ class AliasTestCase(TestBase):
self.buildDsym ()
self.alias_tests ()
@expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
@dwarf_test
def test_with_dwarf (self):
self.buildDwarf ()

View File

@ -29,7 +29,8 @@ class FunctionTypesTestCase(TestBase):
"""Test that a function pointer to 'printf' works and can be called."""
self.buildDsym()
self.function_pointers()
@expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
@dwarf_test
def test_pointers_with_dwarf(self):
"""Test that a function pointer to 'printf' works and can be called."""

View File

@ -16,6 +16,7 @@ class CPPBoolTestCase(TestBase):
self.buildDsym()
self.static_method_commands()
@expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Test that bool types work in the expression parser"""

View File

@ -17,6 +17,7 @@ class CPPStaticMethodsTestCase(TestBase):
self.buildDsym()
self.static_method_commands()
@expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Test that static methods are properly distinguished from regular methods"""

View File

@ -19,6 +19,7 @@ class CPPThisTestCase(TestBase):
self.static_method_commands()
#rdar://problem/9962849
@expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
@expectedFailureGcc # llvm.org/pr15439 The 'this' pointer isn't available during expression evaluation when stopped in an inlined member function.
@dwarf_test
def test_with_dwarf_and_run_command(self):

View File

@ -28,6 +28,7 @@ class CppVirtualMadness(TestBase):
self.buildDsym()
self.virtual_madness_test()
@expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
def test_virtual_madness_dwarf(self):
"""Test that expression works correctly with virtual inheritance as well as virtual function."""
self.buildDwarf()