forked from OSchip/llvm-project
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:
parent
f6d2d3bb40
commit
e651aee927
|
@ -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):
|
||||
|
|
|
@ -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."""
|
||||
|
|
Loading…
Reference in New Issue