[Lldb-commits] [lldb] r193822 - This test is currently expected to fail, mark it as such pending fixes

Enrico Granata egranata at apple.com
Thu Oct 31 15:55:55 PDT 2013


Author: enrico
Date: Thu Oct 31 17:55:55 2013
New Revision: 193822

URL: http://llvm.org/viewvc/llvm-project?rev=193822&view=rev
Log:
This test is currently expected to fail, mark it as such pending fixes


Modified:
    lldb/trunk/test/functionalities/exec/TestExec.py

Modified: lldb/trunk/test/functionalities/exec/TestExec.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/exec/TestExec.py?rev=193822&r1=193821&r2=193822&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/exec/TestExec.py (original)
+++ lldb/trunk/test/functionalities/exec/TestExec.py Thu Oct 31 17:55:55 2013
@@ -24,6 +24,7 @@ class ExecTestCase(TestBase):
         
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @dsym_test
+    @unittest2.expectedFailure("rdar://15367122")
     def test_with_dsym (self):
         if self.getArchitecture() == 'x86_64':
             source = os.path.join (os.getcwd(), "main.cpp")
@@ -37,6 +38,7 @@ class ExecTestCase(TestBase):
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @dwarf_test
+    @unittest2.expectedFailure("rdar://15367122")
     def test_with_dwarf (self):
         if self.getArchitecture() == 'x86_64':
             source = os.path.join (os.getcwd(), "main.cpp")





More information about the lldb-commits mailing list