Ditto 'requires modern objc runtime' for TestObjCProperty.py -- fix test suite errors for i386.

llvm-svn: 154636
This commit is contained in:
Johnny Chen 2012-04-13 00:18:17 +00:00
parent 45872c01ff
commit 97ccf9f3b2
1 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,8 @@ class ObjCPropertyTestCase(TestBase):
@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 @@ class ObjCPropertyTestCase(TestBase):
@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()