[testsuite] Remove testing failures vestiges.

Some tests are failing on macOS when building with the in-tree
clang, and this is because they're conditional on the version released.
Apple releases using a different versioning number, but as these are
conditional on clang < 7, they fail for clang ToT (which is 6.0).
As a general solution, we actually need either a mapping between
Apple internal release version and public ones.

That said, I discussed this with Fred , and Apple Clang 6.0 seems
to be old enough that we can remove this altogether (which means I
can delay implementing the general purpose solution for a bit).

Differential Revision:  https://reviews.llvm.org/D41101

llvm-svn: 320444
This commit is contained in:
Davide Italiano 2017-12-12 01:14:11 +00:00
parent ac75523108
commit 53cff5161c
1 changed files with 0 additions and 60 deletions

View File

@ -47,12 +47,6 @@ class ObjCNewSyntaxTestCase(TestBase):
substrs=[' resolved, hit count = 1'])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_read_array(self):
@ -69,12 +63,6 @@ class ObjCNewSyntaxTestCase(TestBase):
substrs=["foo"])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_update_array(self):
@ -91,12 +79,6 @@ class ObjCNewSyntaxTestCase(TestBase):
substrs=["bar"])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_read_dictionary(self):
@ -113,12 +95,6 @@ class ObjCNewSyntaxTestCase(TestBase):
substrs=["value"])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_update_dictionary(self):
@ -135,12 +111,6 @@ class ObjCNewSyntaxTestCase(TestBase):
substrs=["object"])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_array_literal(self):
@ -155,12 +125,6 @@ class ObjCNewSyntaxTestCase(TestBase):
"bar"])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_dictionary_literal(self):
@ -174,12 +138,6 @@ class ObjCNewSyntaxTestCase(TestBase):
"object"])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_char_literal(self):
@ -189,12 +147,6 @@ class ObjCNewSyntaxTestCase(TestBase):
VARIABLES_DISPLAYED_CORRECTLY, substrs=[str(ord('a'))])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_integer_literals(self):
@ -226,12 +178,6 @@ class ObjCNewSyntaxTestCase(TestBase):
substrs=["1"])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_float_literal(self):
@ -241,12 +187,6 @@ class ObjCNewSyntaxTestCase(TestBase):
substrs=["NSNumber", "123.45"])
@skipUnlessDarwin
@expectedFailureAll(
oslist=['macosx'],
compiler='clang',
compiler_version=[
'<',
'7.0.0'])
@skipIf(macos_version=["<", "10.12"])
@expectedFailureAll(archs=["i[3-6]86"])
def test_expressions_in_literals(self):