[Lldb-commits] [lldb] r180965 - Mark TestConstVariables as expected to fail due to radar 13314878 on darwin. The tests are already skipped on linux.
Greg Clayton
gclayton at apple.com
Thu May 2 15:19:05 PDT 2013
Author: gclayton
Date: Thu May 2 17:19:05 2013
New Revision: 180965
URL: http://llvm.org/viewvc/llvm-project?rev=180965&view=rev
Log:
Mark TestConstVariables as expected to fail due to radar 13314878 on darwin. The tests are already skipped on linux.
Modified:
lldb/trunk/test/lang/c/const_variables/TestConstVariables.py
Modified: lldb/trunk/test/lang/c/const_variables/TestConstVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/const_variables/TestConstVariables.py?rev=180965&r1=180964&r2=180965&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/const_variables/TestConstVariables.py (original)
+++ lldb/trunk/test/lang/c/const_variables/TestConstVariables.py Thu May 2 17:19:05 2013
@@ -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()
More information about the lldb-commits
mailing list