XFAIL tests which fail with gcc on linux

llvm-svn: 274116
This commit is contained in:
Pavel Labath 2016-06-29 10:16:14 +00:00
parent 5e21c94f25
commit 7cbd742e3b
3 changed files with 3 additions and 1 deletions

View File

@ -52,6 +52,7 @@ class TopLevelExpressionsTestCase(TestBase):
@add_test_categories(['pyapi'])
@expectedFailureAndroid(api_levels=[21, 22], bugnumber="llvm.org/pr27787")
@expectedFailureAll(oslist=["linux"], archs=["arm", "aarch64"], bugnumber="llvm.org/pr27787")
@expectedFailureAll(bugnumber="llvm.org/pr28353", oslist=["linux"], archs=["i386", "x86_64"], compiler="gcc", compiler_version=["<", "4.9"])
@skipIf(debug_info="gmodules") # not relevant
@skipIf(oslist=["windows"]) # Error in record layout on Windows
def test_top_level_expressions(self):

View File

@ -92,7 +92,7 @@ class RegisterVariableTestCase(TestBase):
@expectedFailureAll(compiler="clang", compiler_version=['<', '3.5'])
@expectedFailureAll(compiler="gcc", compiler_version=['>=', '4.8.2'], archs="i386")
@expectedFailureAll(compiler="gcc", compiler_version=['>=', '4.8.2'], archs=["i386", "x86_64"])
def test_and_run_command(self):
"""Test expressions on register values."""

View File

@ -10,6 +10,7 @@ class TemplateIntegerArgsTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureAll(bugnumber="llvm.org/pr28354", compiler="gcc", oslist=["linux"])
def test_with_run_command(self):
"""Test that C++ template classes that have integer parameters work correctly.