[Lldb-commits] [lldb] r193831 - This test is expected to fail pending proper support

Enrico Granata egranata at apple.com
Thu Oct 31 16:43:42 PDT 2013


Author: enrico
Date: Thu Oct 31 18:43:42 2013
New Revision: 193831

URL: http://llvm.org/viewvc/llvm-project?rev=193831&view=rev
Log:
This test is expected to fail pending proper support


Modified:
    lldb/trunk/test/lang/c/tls_globals/TestTlsGlobals.py

Modified: lldb/trunk/test/lang/c/tls_globals/TestTlsGlobals.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/tls_globals/TestTlsGlobals.py?rev=193831&r1=193830&r2=193831&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/tls_globals/TestTlsGlobals.py (original)
+++ lldb/trunk/test/lang/c/tls_globals/TestTlsGlobals.py Thu Oct 31 18:43:42 2013
@@ -12,6 +12,7 @@ class TlsGlobalTestCase(TestBase):
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @dsym_test
+    @unittest2.expectedFailure("rdar://7796742")
     def test_with_dsym(self):
         """Test thread-local storage."""
         self.buildDsym()
@@ -19,6 +20,7 @@ class TlsGlobalTestCase(TestBase):
 
     @dwarf_test
     @expectedFailureFreeBSD("llvm.org/pr16696")
+    @unittest2.expectedFailure("rdar://7796742")
     def test_with_dwarf(self):
         """Test thread-local storage."""
         self.buildDwarf()





More information about the lldb-commits mailing list