Marking two tests expected-to-fail on Linux

- PR-15260: lldb does not display correct value of 1-bit field
- PR-16261: lldb does not display size of (file/class) static array

llvm-svn: 175111
This commit is contained in:
Daniel Malea 2013-02-14 00:20:44 +00:00
parent f6d2d3bb40
commit e651aee927
2 changed files with 3 additions and 0 deletions

View File

@ -25,12 +25,14 @@ class BitfieldsTestCase(TestBase):
self.buildDsym()
self.bitfields_variable_python()
@expectedFailureLinux # PR-15260: lldb on Linux does not display the correct value of 1-bit fields in a struct
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Test 'frame variable ...' on a variable with bitfields."""
self.buildDwarf()
self.bitfields_variable()
@expectedFailureLinux # PR-15260: lldb on Linux does not display the correct value of 1-bit fields in a struct
@python_api_test
@dwarf_test
def test_with_dwarf_and_python_api(self):

View File

@ -19,6 +19,7 @@ class StaticVariableTestCase(TestBase):
self.buildDsym()
self.static_variable_commands()
@expectedFailureLinux # PR-15261: lldb on Linux does not display the size of (class or file)static arrays
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Test that file and class static variables display correctly."""