[Lldb-commits] [lldb] r173363 - in /lldb/trunk/test: functionalities/stop-hook/TestStopHookMechanism.py lang/cpp/char1632_t/TestChar1632T.py lang/cpp/wchar_t/TestCxxWCharT.py python_api/lldbutil/iter/TestLLDBIterator.py python_api/lldbutil/iter/TestRegistersIterator.py python_api/value/change_values/TestChangeValueAPI.py
Daniel Malea
daniel.malea at intel.com
Thu Jan 24 11:47:06 PST 2013
Author: dmalea
Date: Thu Jan 24 13:47:06 2013
New Revision: 173363
URL: http://llvm.org/viewvc/llvm-project?rev=173363&view=rev
Log:
Marking test cases with @expectedFailureLinux as per recently opened bugs
- PR 15038: missing wide char support on Linux
- PR 14600 - Exception state registers not supported on Linux
- PR 15039: SBProcess.GetSTDOUT() returns an empty buffer
- PR 15037: stop-hooks sometimes fail to fire on Linux
Modified:
lldb/trunk/test/functionalities/stop-hook/TestStopHookMechanism.py
lldb/trunk/test/lang/cpp/char1632_t/TestChar1632T.py
lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py
lldb/trunk/test/python_api/lldbutil/iter/TestLLDBIterator.py
lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py
lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py
Modified: lldb/trunk/test/functionalities/stop-hook/TestStopHookMechanism.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/stop-hook/TestStopHookMechanism.py?rev=173363&r1=173362&r2=173363&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/stop-hook/TestStopHookMechanism.py (original)
+++ lldb/trunk/test/functionalities/stop-hook/TestStopHookMechanism.py Thu Jan 24 13:47:06 2013
@@ -19,6 +19,7 @@
self.buildDsym()
self.stop_hook_firing()
+ @expectedFailureLinux # bugzilla 15037: stop-hooks sometimes fail to fire on Linux
@dwarf_test
def test_with_dwarf(self):
"""Test the stop-hook mechanism."""
Modified: lldb/trunk/test/lang/cpp/char1632_t/TestChar1632T.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/char1632_t/TestChar1632T.py?rev=173363&r1=173362&r2=173363&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/char1632_t/TestChar1632T.py (original)
+++ lldb/trunk/test/lang/cpp/char1632_t/TestChar1632T.py Thu Jan 24 13:47:06 2013
@@ -20,6 +20,7 @@
self.buildDsym()
self.char1632()
+ @expectedFailureLinux # bugzilla 15038: missing wide char support on Linux
@dwarf_test
def test_with_dwarf(self):
"""Test that the C++11 support for char16_t and char32_t works correctly."""
Modified: lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py?rev=173363&r1=173362&r2=173363&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py (original)
+++ lldb/trunk/test/lang/cpp/wchar_t/TestCxxWCharT.py Thu Jan 24 13:47:06 2013
@@ -20,6 +20,7 @@
self.buildDsym()
self.wchar_t()
+ @expectedFailureLinux # bugzilla 15038: missing wide char support on Linux
@dwarf_test
def test_with_dwarf(self):
"""Test that C++ supports wchar_t correctly."""
Modified: lldb/trunk/test/python_api/lldbutil/iter/TestLLDBIterator.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/lldbutil/iter/TestLLDBIterator.py?rev=173363&r1=173362&r2=173363&view=diff
==============================================================================
--- lldb/trunk/test/python_api/lldbutil/iter/TestLLDBIterator.py (original)
+++ lldb/trunk/test/python_api/lldbutil/iter/TestLLDBIterator.py Thu Jan 24 13:47:06 2013
@@ -31,7 +31,6 @@
self.buildDefault()
self.lldb_iter_breakpoint()
- @expectedFailureLinux # bugzilla 14323
@python_api_test
def test_lldb_iter_frame(self):
"""Test iterator works correctly for SBProcess->SBThread->SBFrame."""
Modified: lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py?rev=173363&r1=173362&r2=173363&view=diff
==============================================================================
--- lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py (original)
+++ lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py Thu Jan 24 13:47:06 2013
@@ -18,6 +18,7 @@
# Find the line number to break inside main().
self.line1 = line_number('main.cpp', '// Set break point at this line.')
+ @expectedFailureLinux # bugzilla 14600 - Exception state registers not supported on Linux
@python_api_test
def test_iter_registers(self):
"""Test iterator works correctly for lldbutil.iter_registers()."""
Modified: lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py?rev=173363&r1=173362&r2=173363&view=diff
==============================================================================
--- lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py (original)
+++ lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py Thu Jan 24 13:47:06 2013
@@ -22,6 +22,7 @@
self.setTearDownCleanup(dictionary=d)
self.change_value_api(self.exe_name)
+ @expectedFailureLinux # bugzilla 15039: SBProcess.GetSTDOUT() returns an empty buffer
@python_api_test
@dwarf_test
def test_change_value_with_dwarf(self):
More information about the lldb-commits
mailing list