diff options
Diffstat (limited to 'lldb/test/lang/cpp')
-rw-r--r-- | lldb/test/lang/cpp/bool/TestCPPBool.py | 1 | ||||
-rw-r--r-- | lldb/test/lang/cpp/static_methods/TestCPPStaticMethods.py | 1 | ||||
-rw-r--r-- | lldb/test/lang/cpp/this/TestCPPThis.py | 1 | ||||
-rw-r--r-- | lldb/test/lang/cpp/virtual/TestVirtual.py | 1 |
4 files changed, 0 insertions, 4 deletions
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.""" |