diff options
author | Pavel Labath <labath@google.com> | 2016-05-05 09:03:22 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-05-05 09:03:22 +0000 |
commit | bb06ffaff39b9d0a1f008b5fa49438b1641e500c (patch) | |
tree | 35af895e3fd16b5f3a798d46ab5edd4cf4710ec8 /lldb/packages/Python/lldbsuite/test | |
parent | f93095a0035e58b33db1cb6e96fd517cd982727c (diff) | |
download | bcm5719-llvm-bb06ffaff39b9d0a1f008b5fa49438b1641e500c.tar.gz bcm5719-llvm-bb06ffaff39b9d0a1f008b5fa49438b1641e500c.zip |
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.
llvm-svn: 268619
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py b/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py index 3caf9162f8a..0d078d85d51 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py @@ -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() |