summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/test/expression_command/call-function/TestCallStdStringFunction.py1
-rw-r--r--lldb/test/expression_command/formatters/TestFormatters.py1
-rw-r--r--lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py1
-rw-r--r--lldb/test/expression_command/test/TestExprs.py1
-rw-r--r--lldb/test/functionalities/alias/TestAliases.py1
-rw-r--r--lldb/test/lang/c/function_types/TestFunctionTypes.py1
-rw-r--r--lldb/test/lang/c/strings/TestCStrings.py1
-rw-r--r--lldb/test/lang/cpp/bool/TestCPPBool.py1
-rw-r--r--lldb/test/lang/cpp/static_methods/TestCPPStaticMethods.py1
-rw-r--r--lldb/test/lang/cpp/this/TestCPPThis.py1
-rw-r--r--lldb/test/lang/cpp/virtual/TestVirtual.py1
11 files changed, 0 insertions, 11 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
index a8b968b39ef..0bbf78c679e 100644
--- a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
+++ b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
@@ -26,7 +26,6 @@ class ExprCommandCallFunctionTestCase(TestBase):
self.call_function()
@dwarf_test
- @expectedFailureFreeBSD # llvm.org/pr16697
@expectedFailureGcc # llvm.org/pr14437, fails with GCC 4.6.3 and 4.7.2
@expectedFailureIcc # llvm.org/pr14437, fails with ICC 13.1
def test_with_dwarf(self):
diff --git a/lldb/test/expression_command/formatters/TestFormatters.py b/lldb/test/expression_command/formatters/TestFormatters.py
index 70ed269a2a4..8f312f6e3cb 100644
--- a/lldb/test/expression_command/formatters/TestFormatters.py
+++ b/lldb/test/expression_command/formatters/TestFormatters.py
@@ -25,7 +25,6 @@ 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."""
diff --git a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py
index 2165b3eeb93..ed8501b334b 100644
--- a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py
+++ b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py
@@ -20,7 +20,6 @@ class Radar9673644TestCase(TestBase):
self.line = line_number(self.main_source, '// Set breakpoint here.')
# rdar://problem/9673664
- @expectedFailureFreeBSD # llvm.org/pr16697
@skipIfLinux # llvm.org/pr14805: expressions that require memory allocation evaluate incorrectly on Linux
def test_expr_commands(self):
"""The following expression commands should just work."""
diff --git a/lldb/test/expression_command/test/TestExprs.py b/lldb/test/expression_command/test/TestExprs.py
index 363adf289db..422e05e3e2e 100644
--- a/lldb/test/expression_command/test/TestExprs.py
+++ b/lldb/test/expression_command/test/TestExprs.py
@@ -180,7 +180,6 @@ 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()
diff --git a/lldb/test/functionalities/alias/TestAliases.py b/lldb/test/functionalities/alias/TestAliases.py
index d3b86f27e49..99fb1d19fe0 100644
--- a/lldb/test/functionalities/alias/TestAliases.py
+++ b/lldb/test/functionalities/alias/TestAliases.py
@@ -18,7 +18,6 @@ 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 ()
diff --git a/lldb/test/lang/c/function_types/TestFunctionTypes.py b/lldb/test/lang/c/function_types/TestFunctionTypes.py
index d6e4a28f130..a9acced05d0 100644
--- a/lldb/test/lang/c/function_types/TestFunctionTypes.py
+++ b/lldb/test/lang/c/function_types/TestFunctionTypes.py
@@ -30,7 +30,6 @@ class FunctionTypesTestCase(TestBase):
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."""
diff --git a/lldb/test/lang/c/strings/TestCStrings.py b/lldb/test/lang/c/strings/TestCStrings.py
index a3b3a261cdd..5870451057d 100644
--- a/lldb/test/lang/c/strings/TestCStrings.py
+++ b/lldb/test/lang/c/strings/TestCStrings.py
@@ -16,7 +16,6 @@ class CStringsTestCase(TestBase):
self.buildDsym()
self.static_method_commands()
- @expectedFailureFreeBSD # llvm.org/pr16697
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Tests that C strings work as expected in expressions"""
diff --git a/lldb/test/lang/cpp/bool/TestCPPBool.py b/lldb/test/lang/cpp/bool/TestCPPBool.py
index e6eb18a6815..0337cca5aa3 100644
--- a/lldb/test/lang/cpp/bool/TestCPPBool.py
+++ b/lldb/test/lang/cpp/bool/TestCPPBool.py
@@ -16,7 +16,6 @@ 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"""
diff --git a/lldb/test/lang/cpp/static_methods/TestCPPStaticMethods.py b/lldb/test/lang/cpp/static_methods/TestCPPStaticMethods.py
index e228e1a85f6..357b050eb7b 100644
--- a/lldb/test/lang/cpp/static_methods/TestCPPStaticMethods.py
+++ b/lldb/test/lang/cpp/static_methods/TestCPPStaticMethods.py
@@ -17,7 +17,6 @@ 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"""
diff --git a/lldb/test/lang/cpp/this/TestCPPThis.py b/lldb/test/lang/cpp/this/TestCPPThis.py
index d2bb72d65ce..0cb7404a5ee 100644
--- a/lldb/test/lang/cpp/this/TestCPPThis.py
+++ b/lldb/test/lang/cpp/this/TestCPPThis.py
@@ -19,7 +19,6 @@ 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.
@expectedFailureIcc # ICC doesn't emit correct DWARF inline debug info for inlined member functions
@dwarf_test
diff --git a/lldb/test/lang/cpp/virtual/TestVirtual.py b/lldb/test/lang/cpp/virtual/TestVirtual.py
index 876a3632315..2d811ab8e1f 100644
--- a/lldb/test/lang/cpp/virtual/TestVirtual.py
+++ b/lldb/test/lang/cpp/virtual/TestVirtual.py
@@ -28,7 +28,6 @@ class CppVirtualMadness(TestBase):
self.buildDsym()
self.virtual_madness_test()
- @expectedFailureFreeBSD('llvm.org/pr16697') # Expression fails with 'there is no JIT compiled function'
@expectedFailureIcc('llvm.org/pr16808') # lldb does not call the correct virtual function with icc
def test_virtual_madness_dwarf(self):
"""Test that expression works correctly with virtual inheritance as well as virtual function."""
OpenPOWER on IntegriCloud