[Lldb-commits] [lldb] r325339 - Re-enable lang/objc/modules/TestObjCModules
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 16 04:33:10 PST 2018
Author: jdevlieghere
Date: Fri Feb 16 04:33:10 2018
New Revision: 325339
URL: http://llvm.org/viewvc/llvm-project?rev=325339&view=rev
Log:
Re-enable lang/objc/modules/TestObjCModules
The reason this test was disabled is no longer relevant. However, it
didn't turn into an unexpected success because of a syntax error in the
test itself. This commit fixes that and re-enables the test.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py?rev=325339&r1=325338&r2=325339&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py Fri Feb 16 04:33:10 2018
@@ -26,12 +26,8 @@ class ObjCModulesTestCase(TestBase):
self.line = line_number('main.m', '// Set breakpoint 0 here.')
@skipUnlessDarwin
- @unittest2.expectedFailure("rdar://20416388")
@skipIf(macos_version=["<", "10.12"])
def test_expr(self):
- if not self.applies():
- return
-
self.build()
exe = self.getBuildArtifact("a.out")
self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)
More information about the lldb-commits
mailing list