Skip TestBitfileds on linux

Test added in r267248 exposed a bug in handling of dwarf produced by clang>=3.9, which causes a
crash during expression evaluation. Skip the test until this is sorted out.

llvm-svn: 267407
This commit is contained in:
Pavel Labath 2016-04-25 14:00:23 +00:00
parent 95f68aa7eb
commit 73151ff298
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ class BitfieldsTestCase(TestBase):
self.line = line_number('main.c', '// Set break point at this line.') 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) @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
def test_and_run_command(self): def test_and_run_command(self):
"""Test 'frame variable ...' on a variable with bitfields.""" """Test 'frame variable ...' on a variable with bitfields."""
self.build() self.build()