[Lldb-commits] [lldb] r175307 - More test case cleanup (Linux and Mac):
Daniel Malea
daniel.malea at intel.com
Fri Feb 15 13:27:14 PST 2013
Author: dmalea
Date: Fri Feb 15 15:27:14 2013
New Revision: 175307
URL: http://llvm.org/viewvc/llvm-project?rev=175307&view=rev
Log:
More test case cleanup (Linux and Mac):
- remove expectedFailure decorator from resolved rdar 12566646 and 10887661
- remove expectedFailure from TestBitfields testcase not actually affected by bug
- skip the (non-deterministic) TestStopHookMechanism.py to avoid a noisy suite on Linux
Modified:
lldb/trunk/test/functionalities/data-formatter/rdar-10887661/TestRdar10887661.py
lldb/trunk/test/functionalities/stop-hook/TestStopHookMechanism.py
lldb/trunk/test/lang/c/bitfields/TestBitfields.py
lldb/trunk/test/lang/c/struct_types/TestStructTypes.py
Modified: lldb/trunk/test/functionalities/data-formatter/rdar-10887661/TestRdar10887661.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/rdar-10887661/TestRdar10887661.py?rev=175307&r1=175306&r2=175307&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/rdar-10887661/TestRdar10887661.py (original)
+++ lldb/trunk/test/functionalities/data-formatter/rdar-10887661/TestRdar10887661.py Fri Feb 15 15:27:14 2013
@@ -13,7 +13,6 @@ class Rdar10887661TestCase(TestBase):
mydir = os.path.join("functionalities", "data-formatter", "rdar-10887661")
# rdar://problem/10887661
- @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@dsym_test
def test_with_dsym_and_run_command(self):
@@ -22,7 +21,6 @@ class Rdar10887661TestCase(TestBase):
self.capping_test_commands()
# rdar://problem/10887661
- @unittest2.expectedFailure
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Check for an issue where capping does not work because the Target pointer appears to be changing behind our backs."""
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=175307&r1=175306&r2=175307&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/stop-hook/TestStopHookMechanism.py (original)
+++ lldb/trunk/test/functionalities/stop-hook/TestStopHookMechanism.py Fri Feb 15 15:27:14 2013
@@ -19,7 +19,7 @@ class StopHookMechanismTestCase(TestBase
self.buildDsym()
self.stop_hook_firing()
- @expectedFailureLinux # bugzilla 15037: stop-hooks sometimes fail to fire on Linux
+ @skipOnLinux # PR-15037: stop-hooks sometimes fail to fire on Linux (disabled to avoid needless noise)
@dwarf_test
def test_with_dwarf(self):
"""Test the stop-hook mechanism."""
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=175307&r1=175306&r2=175307&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/bitfields/TestBitfields.py (original)
+++ lldb/trunk/test/lang/c/bitfields/TestBitfields.py Fri Feb 15 15:27:14 2013
@@ -32,7 +32,6 @@ class BitfieldsTestCase(TestBase):
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/c/struct_types/TestStructTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/struct_types/TestStructTypes.py?rev=175307&r1=175306&r2=175307&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/struct_types/TestStructTypes.py (original)
+++ lldb/trunk/test/lang/c/struct_types/TestStructTypes.py Fri Feb 15 15:27:14 2013
@@ -15,7 +15,6 @@ class StructTypesTestCase(TestBase):
mydir = os.path.join("lang", "c", "struct_types")
# rdar://problem/12566646
- @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@dsym_test
def test_with_dsym(self):
@@ -24,7 +23,6 @@ class StructTypesTestCase(TestBase):
self.struct_types()
# rdar://problem/12566646
- @unittest2.expectedFailure
@dwarf_test
def test_with_dwarf(self):
"""Test that break on a struct declaration has no effect."""
More information about the lldb-commits
mailing list