[Lldb-commits] [lldb] r155504 - /lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py
Sean Callanan
scallanan at apple.com
Tue Apr 24 16:31:54 PDT 2012
Author: spyffe
Date: Tue Apr 24 18:31:54 2012
New Revision: 155504
URL: http://llvm.org/viewvc/llvm-project?rev=155504&view=rev
Log:
Forgo the selector test on i386, where we can't
test whether an object responds to a selector
from outside the process.
Modified:
lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py
Modified: lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py?rev=155504&r1=155503&r2=155504&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py (original)
+++ lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py Tue Apr 24 18:31:54 2012
@@ -17,6 +17,8 @@
@dsym_test
def test_objc_checker_with_dsym(self):
"""Test that checkers catch unrecognized selectors"""
+ if self.getArchitecture() == 'i386':
+ self.skipTest("requires Objective-C 2.0 runtime")
self.buildDsym()
self.do_test_checkers()
@@ -24,6 +26,8 @@
@dwarf_test
def test_objc_checker_with_dwarf(self):
"""Test that checkers catch unrecognized selectors"""
+ if self.getArchitecture() == 'i386':
+ self.skipTest("requires Objective-C 2.0 runtime")
self.buildDwarf()
self.do_test_checkers()
More information about the lldb-commits
mailing list