diff options
-rw-r--r-- | lldb/test/lang/c/const_variables/TestConstVariables.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/lang/c/const_variables/TestConstVariables.py b/lldb/test/lang/c/const_variables/TestConstVariables.py index 6540d4c593f..621d2f508fa 100644 --- a/lldb/test/lang/c/const_variables/TestConstVariables.py +++ b/lldb/test/lang/c/const_variables/TestConstVariables.py @@ -11,6 +11,7 @@ class ConstVariableTestCase(TestBase): mydir = os.path.join("lang", "c", "const_variables") @dsym_test + @unittest2.expectedFailure(13314878) def test_with_dsym_and_run_command(self): """Test interpreted and JITted expressions on constant values.""" self.buildDsym() @@ -18,6 +19,7 @@ class ConstVariableTestCase(TestBase): @skipOnLinux # This test works with gcc, but fails with newer version of clang on Linux due to a clang issue. Bug number TDB. @dwarf_test + @unittest2.expectedFailure(13314878) def test_with_dwarf_and_run_command(self): """Test interpreted and JITted expressions on constant values.""" self.buildDwarf() |