diff options
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/test/lang/cpp/class_static/TestStaticVariables.py | 4 | ||||
| -rw-r--r-- | lldb/test/lang/cpp/this/TestCPPThis.py | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lldb/test/lang/cpp/class_static/TestStaticVariables.py b/lldb/test/lang/cpp/class_static/TestStaticVariables.py index 966cee34a2f..f01c12258b2 100644 --- a/lldb/test/lang/cpp/class_static/TestStaticVariables.py +++ b/lldb/test/lang/cpp/class_static/TestStaticVariables.py @@ -23,12 +23,16 @@ class StaticVariableTestCase(TestBase): self.static_variable_commands() @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + #rdar://problem/9980907 + @expectedFailureClang @python_api_test def test_with_dsym_and_python_api(self): """Test Python APIs on file and class static variables.""" self.buildDsym() self.static_variable_python() + #rdar://problem/9980907 + @expectedFailureClang @python_api_test def test_with_dwarf_and_python_api(self): """Test Python APIs on file and class static variables.""" diff --git a/lldb/test/lang/cpp/this/TestCPPThis.py b/lldb/test/lang/cpp/this/TestCPPThis.py index 3efb84d102b..13ebf9003f2 100644 --- a/lldb/test/lang/cpp/this/TestCPPThis.py +++ b/lldb/test/lang/cpp/this/TestCPPThis.py @@ -9,11 +9,15 @@ class CPPThisTestCase(TestBase): mydir = os.path.join("lang", "cpp", "this") @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + #rdar://problem/9962849 + @expectedFailureClang def test_with_dsym_and_run_command(self): """Test that the appropriate member variables are available when stopped in C++ static, inline, and const methods""" self.buildDsym() self.static_method_commands() + #rdar://problem/9962849 + @expectedFailureClang def test_with_dwarf_and_run_command(self): """Test that the appropriate member variables are available when stopped in C++ static, inline, and const methods""" self.buildDwarf() |

