[Lldb-commits] [lldb] r176581 - Skipping TestConstVariables on Linux.
Andrew Kaylor
andrew.kaylor at intel.com
Wed Mar 6 13:37:41 PST 2013
Author: akaylor
Date: Wed Mar 6 15:37:41 2013
New Revision: 176581
URL: http://llvm.org/viewvc/llvm-project?rev=176581&view=rev
Log:
Skipping TestConstVariables on Linux.
The test was marked as expectedFailureLinux, but now it passes with gcc and some versions of clang. Newer versions of clang introduce a failure due to bad DWARF information.
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=176581&r1=176580&r2=176581&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/const_variables/TestConstVariables.py (original)
+++ lldb/trunk/test/lang/c/const_variables/TestConstVariables.py Wed Mar 6 15:37:41 2013
@@ -16,7 +16,7 @@ class ConstVariableTestCase(TestBase):
self.buildDsym()
self.const_variable()
- @expectedFailureLinux # Fix in review; test marked XFAIL to see if there's any other problems in buildbots
+ @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
def test_with_dwarf_and_run_command(self):
"""Test interpreted and JITted expressions on constant values."""
More information about the lldb-commits
mailing list