[Lldb-commits] [lldb] r268619 - Downgrade skip to xfail in TestBitfields on linux
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu May 5 02:03:23 PDT 2016
Author: labath
Date: Thu May 5 04:03:22 2016
New Revision: 268619
URL: http://llvm.org/viewvc/llvm-project?rev=268619&view=rev
Log:
Downgrade skip to xfail in TestBitfields on linux
the test should no longer crash, but we need to investigate why ToT clang still generates debug
info we don't understand.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py?rev=268619&r1=268618&r2=268619&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py Thu May 5 04:03:22 2016
@@ -21,7 +21,7 @@ class BitfieldsTestCase(TestBase):
self.line = line_number('main.c', '// Set break point at this line.')
@skipIfWindows # BitFields exhibit crashes in record layout on Windows (http://llvm.org/pr21800)
- @skipIf("llvm.org/pr27510", oslist=["linux"], compiler="clang", compiler_version=[">=", "3.9"]) # expectedFailure, skip to avoid crash
+ @expectedFailureAll("llvm.org/pr27510", oslist=["linux"], compiler="clang", compiler_version=[">=", "3.9"])
def test_and_run_command(self):
"""Test 'frame variable ...' on a variable with bitfields."""
self.build()
More information about the lldb-commits
mailing list