forked from OSchip/llvm-project
Update two android XFAILS
- XFAIL on TestNoreturnUnwind on all architectures - TestStaticVariables fails with clang-3.8 as well llvm-svn: 301186
This commit is contained in:
parent
72163a9da5
commit
b4f6a95680
|
@ -17,7 +17,7 @@ class NoreturnUnwind(TestBase):
|
|||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
@skipIfWindows # clang-cl does not support gcc style attributes.
|
||||
@expectedFailureAndroid(bugnumber="llvm.org/pr31192", archs=["x86_64"])
|
||||
@expectedFailureAndroid(bugnumber="llvm.org/pr31192")
|
||||
@expectedFailureAll(bugnumber="llvm.org/pr31192", oslist=['linux'], compiler="gcc", archs=['arm'])
|
||||
def test(self):
|
||||
"""Test that we can backtrace correctly with 'noreturn' functions on the stack"""
|
||||
|
|
|
@ -61,7 +61,7 @@ class StaticVariableTestCase(TestBase):
|
|||
bugnumber="Compiler emits incomplete debug info")
|
||||
@expectedFailureAll(
|
||||
compiler=["clang"],
|
||||
compiler_version=["<", "3.8"],
|
||||
compiler_version=["<", "3.9"],
|
||||
bugnumber='llvm.org/pr20550')
|
||||
@add_test_categories(['pyapi'])
|
||||
def test_with_python_api(self):
|
||||
|
|
Loading…
Reference in New Issue