[Lldb-commits] [lldb] r234028 - Marked the modules tests as expected failures,
Sean Callanan
scallanan at apple.com
Fri Apr 3 10:17:12 PDT 2015
Author: spyffe
Date: Fri Apr 3 12:17:12 2015
New Revision: 234028
URL: http://llvm.org/viewvc/llvm-project?rev=234028&view=rev
Log:
Marked the modules tests as expected failures,
because the OS X builders aren't happy with them.
<rdar://problem/20416388>
Modified:
lldb/trunk/test/lang/c/modules/TestCModules.py
lldb/trunk/test/lang/objc/modules-incomplete/TestIncompleteModules.py
lldb/trunk/test/lang/objc/modules/TestObjCModules.py
Modified: lldb/trunk/test/lang/c/modules/TestCModules.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/modules/TestCModules.py?rev=234028&r1=234027&r2=234028&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/modules/TestCModules.py (original)
+++ lldb/trunk/test/lang/c/modules/TestCModules.py Fri Apr 3 12:17:12 2015
@@ -16,6 +16,7 @@ class CModulesTestCase(TestBase):
@skipUnlessDarwin
@dsym_test
+ @unittest2.expectedFailure("rdar://20416388")
def test_expr_with_dsym(self):
self.buildDsym()
self.expr()
@@ -23,6 +24,7 @@ class CModulesTestCase(TestBase):
@dwarf_test
@skipIfFreeBSD
@skipIfLinux
+ @unittest2.expectedFailure("rdar://20416388")
def test_expr_with_dwarf(self):
self.buildDwarf()
self.expr()
Modified: lldb/trunk/test/lang/objc/modules-incomplete/TestIncompleteModules.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/modules-incomplete/TestIncompleteModules.py?rev=234028&r1=234027&r2=234028&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/modules-incomplete/TestIncompleteModules.py (original)
+++ lldb/trunk/test/lang/objc/modules-incomplete/TestIncompleteModules.py Fri Apr 3 12:17:12 2015
@@ -16,6 +16,7 @@ class IncompleteModulesTestCase(TestBase
@skipUnlessDarwin
@dsym_test
+ @unittest2.expectedFailure("rdar://20416388")
def test_expr_with_dsym(self):
self.buildDsym()
self.expr()
@@ -23,6 +24,7 @@ class IncompleteModulesTestCase(TestBase
@dwarf_test
@skipIfFreeBSD
@skipIfLinux
+ @unittest2.expectedFailure("rdar://20416388")
def test_expr_with_dwarf(self):
self.buildDwarf()
self.expr()
Modified: lldb/trunk/test/lang/objc/modules/TestObjCModules.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/modules/TestObjCModules.py?rev=234028&r1=234027&r2=234028&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/modules/TestObjCModules.py (original)
+++ lldb/trunk/test/lang/objc/modules/TestObjCModules.py Fri Apr 3 12:17:12 2015
@@ -16,6 +16,7 @@ class ObjCModulesTestCase(TestBase):
@skipUnlessDarwin
@dsym_test
+ @unittest2.expectedFailure("rdar://20416388")
def test_expr_with_dsym(self):
self.buildDsym()
self.expr()
@@ -23,6 +24,7 @@ class ObjCModulesTestCase(TestBase):
@dwarf_test
@skipIfFreeBSD
@skipIfLinux
+ @unittest2.expectedFailure("rdar://20416388")
def test_expr_with_dwarf(self):
self.buildDwarf()
self.expr()
More information about the lldb-commits
mailing list