forked from OSchip/llvm-project
Mark TestCreateDuringInstructionStep as flaky on android arm
llvm-svn: 246966
This commit is contained in:
parent
8647f4381f
commit
63a579c752
|
@ -18,6 +18,7 @@ class CreateDuringInstructionStepTestCase(TestBase):
|
|||
TestBase.setUp(self)
|
||||
|
||||
@skipUnlessPlatform(['linux'])
|
||||
@expectedFlakeyAndroid('llvm.org/pr24737', archs=['arm'])
|
||||
@dwarf_test
|
||||
def test_step_inst_with_dwarf(self):
|
||||
self.buildDwarf(dictionary=self.getBuildFlags())
|
||||
|
|
|
@ -789,6 +789,9 @@ def expectedFlakeyClang(bugnumber=None, compiler_version=None):
|
|||
def expectedFlakeyGcc(bugnumber=None, compiler_version=None):
|
||||
return expectedFlakeyCompiler('gcc', compiler_version, bugnumber)
|
||||
|
||||
def expectedFlakeyAndroid(bugnumber=None, api_levels=None, archs=None):
|
||||
return expectedFlakey(matchAndroid(api_levels, archs), bugnumber)
|
||||
|
||||
def skipIfRemote(func):
|
||||
"""Decorate the item to skip tests if testing remotely."""
|
||||
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
|
||||
|
|
Loading…
Reference in New Issue