[Lldb-commits] [lldb] r187415 - tests: Mark expected FreeBSD failures due to pr16697
Ed Maste
emaste at freebsd.org
Tue Jul 30 06:08:24 PDT 2013
Author: emaste
Date: Tue Jul 30 08:08:24 2013
New Revision: 187415
URL: http://llvm.org/viewvc/llvm-project?rev=187415&view=rev
Log:
tests: Mark expected FreeBSD failures due to pr16697
Modified:
lldb/trunk/test/expression_command/formatters/TestFormatters.py
lldb/trunk/test/expression_command/test/TestExprs.py
lldb/trunk/test/functionalities/alias/TestAliases.py
lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py
lldb/trunk/test/lang/cpp/bool/TestCPPBool.py
lldb/trunk/test/lang/cpp/static_methods/TestCPPStaticMethods.py
lldb/trunk/test/lang/cpp/this/TestCPPThis.py
lldb/trunk/test/lang/cpp/virtual/TestVirtual.py
Modified: lldb/trunk/test/expression_command/formatters/TestFormatters.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/formatters/TestFormatters.py?rev=187415&r1=187414&r2=187415&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/formatters/TestFormatters.py (original)
+++ lldb/trunk/test/expression_command/formatters/TestFormatters.py Tue Jul 30 08:08:24 2013
@@ -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."""
Modified: lldb/trunk/test/expression_command/test/TestExprs.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/test/TestExprs.py?rev=187415&r1=187414&r2=187415&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/test/TestExprs.py (original)
+++ lldb/trunk/test/expression_command/test/TestExprs.py Tue Jul 30 08:08:24 2013
@@ -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()
Modified: lldb/trunk/test/functionalities/alias/TestAliases.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/alias/TestAliases.py?rev=187415&r1=187414&r2=187415&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/alias/TestAliases.py (original)
+++ lldb/trunk/test/functionalities/alias/TestAliases.py Tue Jul 30 08:08:24 2013
@@ -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 ()
Modified: lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py?rev=187415&r1=187414&r2=187415&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py (original)
+++ lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py Tue Jul 30 08:08:24 2013
@@ -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."""
Modified: lldb/trunk/test/lang/cpp/bool/TestCPPBool.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/bool/TestCPPBool.py?rev=187415&r1=187414&r2=187415&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/bool/TestCPPBool.py (original)
+++ lldb/trunk/test/lang/cpp/bool/TestCPPBool.py Tue Jul 30 08:08:24 2013
@@ -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"""
Modified: lldb/trunk/test/lang/cpp/static_methods/TestCPPStaticMethods.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/static_methods/TestCPPStaticMethods.py?rev=187415&r1=187414&r2=187415&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/static_methods/TestCPPStaticMethods.py (original)
+++ lldb/trunk/test/lang/cpp/static_methods/TestCPPStaticMethods.py Tue Jul 30 08:08:24 2013
@@ -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"""
Modified: lldb/trunk/test/lang/cpp/this/TestCPPThis.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/this/TestCPPThis.py?rev=187415&r1=187414&r2=187415&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/this/TestCPPThis.py (original)
+++ lldb/trunk/test/lang/cpp/this/TestCPPThis.py Tue Jul 30 08:08:24 2013
@@ -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):
Modified: lldb/trunk/test/lang/cpp/virtual/TestVirtual.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/virtual/TestVirtual.py?rev=187415&r1=187414&r2=187415&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/virtual/TestVirtual.py (original)
+++ lldb/trunk/test/lang/cpp/virtual/TestVirtual.py Tue Jul 30 08:08:24 2013
@@ -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()
More information about the lldb-commits
mailing list