[Lldb-commits] [lldb] r190104 - Re-enable TestRegisters and TestTargetWatchAddress on Linux
Daniel Malea
daniel.malea at intel.com
Thu Sep 5 14:51:01 PDT 2013
Author: dmalea
Date: Thu Sep 5 16:51:01 2013
New Revision: 190104
URL: http://llvm.org/viewvc/llvm-project?rev=190104&view=rev
Log:
Re-enable TestRegisters and TestTargetWatchAddress on Linux
- TestRegisters passes locally (llvm.org/pr16301 no longer reproduces) -- verifying this on buildbots
- TestTargetWatchAddress also passes locally, and referenced llvm.org/pr14323 which is now closed
Modified:
lldb/trunk/test/functionalities/register/TestRegisters.py
lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
Modified: lldb/trunk/test/functionalities/register/TestRegisters.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/register/TestRegisters.py?rev=190104&r1=190103&r2=190104&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/register/TestRegisters.py (original)
+++ lldb/trunk/test/functionalities/register/TestRegisters.py Thu Sep 5 16:51:01 2013
@@ -53,7 +53,6 @@ class RegisterCommandsTestCase(TestBase)
self.convenience_registers_with_process_attach(test_16bit_regs=False)
@expectedFailureLinux("llvm.org/pr14600") # Linux doesn't support 16-bit convenience registers
- @skipIfLinux # llvm.org/pr16301 LLDB occasionally exits with SIGABRT
def test_convenience_registers_16bit_with_process_attach(self):
"""Test convenience registers after a 'process attach'."""
if not self.getArchitecture() in ['x86_64']:
Modified: lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py?rev=190104&r1=190103&r2=190104&view=diff
==============================================================================
--- lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py (original)
+++ lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py Thu Sep 5 16:51:01 2013
@@ -31,7 +31,6 @@ class TargetWatchAddressAPITestCase(Test
self.do_set_watchaddress()
@expectedFailureFreeBSD('llvm.org/pr16706') # Watchpoints fail on FreeBSD
- @skipIfLinux # llvm.org/pr14323 - skip due to incomplete multi-threaded debug support
@python_api_test
@dwarf_test
def test_watch_address_with_dwarf(self):
More information about the lldb-commits
mailing list