Don't expect new-style Objective-C literals to work on i386 with the V1 runtime.

llvm-svn: 282794
This commit is contained in:
Sean Callanan 2016-09-29 22:01:11 +00:00
parent 56eda16b59
commit ccbb4edbf9
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ class ObjCNewSyntaxTestCase(TestBase):
bugnumber='rdar://27792848') bugnumber='rdar://27792848')
@unittest2.skipIf(platform.system() != "Darwin" or StrictVersion( @unittest2.skipIf(platform.system() != "Darwin" or StrictVersion(
'12.0.0') > platform.release(), "Only supported on Darwin 12.0.0+") '12.0.0') > platform.release(), "Only supported on Darwin 12.0.0+")
@expectedFailureAll(archs=["i[3-6]86"])
def test_expr(self): def test_expr(self):
self.build() self.build()
exe = os.path.join(os.getcwd(), "a.out") exe = os.path.join(os.getcwd(), "a.out")