[Lldb-commits] [lldb] r154636 - /lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py
Johnny Chen
johnny.chen at apple.com
Thu Apr 12 17:18:17 PDT 2012
Author: johnny
Date: Thu Apr 12 19:18:17 2012
New Revision: 154636
URL: http://llvm.org/viewvc/llvm-project?rev=154636&view=rev
Log:
Ditto 'requires modern objc runtime' for TestObjCProperty.py -- fix test suite errors for i386.
Modified:
lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py
Modified: lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py?rev=154636&r1=154635&r2=154636&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py (original)
+++ lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py Thu Apr 12 19:18:17 2012
@@ -17,6 +17,8 @@
@dsym_test
def test_objc_properties_with_dsym(self):
"""Test that expr uses the correct property getters and setters"""
+ if self.getArchitecture() == 'i386':
+ self.skipTest("requires modern objc runtime")
self.buildDsym()
self.do_test_properties()
@@ -24,6 +26,8 @@
@dwarf_test
def test_objc_properties_with_dwarf(self):
"""Test that expr uses the correct property getters and setters"""
+ if self.getArchitecture() == 'i386':
+ self.skipTest("requires modern objc runtime")
self.buildDwarf()
self.do_test_properties()
More information about the lldb-commits
mailing list