[Lldb-commits] [lldb] r246966 - Mark TestCreateDuringInstructionStep as flaky on android arm
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 7 05:15:27 PDT 2015
Author: labath
Date: Mon Sep 7 07:15:27 2015
New Revision: 246966
URL: http://llvm.org/viewvc/llvm-project?rev=246966&view=rev
Log:
Mark TestCreateDuringInstructionStep as flaky on android arm
Modified:
lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
lldb/trunk/test/lldbtest.py
Modified: lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py?rev=246966&r1=246965&r2=246966&view=diff
==============================================================================
--- lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py (original)
+++ lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py Mon Sep 7 07:15:27 2015
@@ -18,6 +18,7 @@ class CreateDuringInstructionStepTestCas
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())
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=246966&r1=246965&r2=246966&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Mon Sep 7 07:15:27 2015
@@ -789,6 +789,9 @@ def expectedFlakeyClang(bugnumber=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):
More information about the lldb-commits
mailing list