[Lldb-commits] [lldb] r175111 - Marking two tests expected-to-fail on Linux
Daniel Malea
daniel.malea at intel.com
Wed Feb 13 16:20:44 PST 2013
Author: dmalea
Date: Wed Feb 13 18:20:44 2013
New Revision: 175111
URL: http://llvm.org/viewvc/llvm-project?rev=175111&view=rev
Log:
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
Modified:
lldb/trunk/test/lang/c/bitfields/TestBitfields.py
lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py
Modified: lldb/trunk/test/lang/c/bitfields/TestBitfields.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/bitfields/TestBitfields.py?rev=175111&r1=175110&r2=175111&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/bitfields/TestBitfields.py (original)
+++ lldb/trunk/test/lang/c/bitfields/TestBitfields.py Wed Feb 13 18:20:44 2013
@@ -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):
Modified: lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py?rev=175111&r1=175110&r2=175111&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py (original)
+++ lldb/trunk/test/lang/cpp/class_static/TestStaticVariables.py Wed Feb 13 18:20:44 2013
@@ -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."""
More information about the lldb-commits
mailing list