forked from OSchip/llvm-project
Don't expect new-style Objective-C literals to work on i386 with the V1 runtime.
llvm-svn: 282794
This commit is contained in:
parent
56eda16b59
commit
ccbb4edbf9
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue