diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/python_api/lldbutil')
4 files changed, 12 insertions, 2 deletions
| diff --git a/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py b/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py index 2cde05af0c39..09a5bc126571 100644 --- a/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py +++ b/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py @@ -8,7 +8,9 @@ from __future__ import print_function  import os  import lldb +from lldbsuite.test.decorators import *  from lldbsuite.test.lldbtest import * +from lldbsuite.test import lldbutil  class FrameUtilsTestCase(TestBase): diff --git a/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py b/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py index 07177c1fae4a..90f879d37610 100644 --- a/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py +++ b/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py @@ -9,7 +9,9 @@ from __future__ import print_function  import os, time  import re  import lldb +from lldbsuite.test.decorators import *  from lldbsuite.test.lldbtest import * +from lldbsuite.test import lldbutil  class LLDBIteratorTestCase(TestBase): diff --git a/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py b/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py index 1645ae1f2a5d..84ef44d2dd73 100644 --- a/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py +++ b/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py @@ -9,7 +9,9 @@ from __future__ import print_function  import os, time  import re  import lldb +from lldbsuite.test.decorators import *  from lldbsuite.test.lldbtest import * +from lldbsuite.test import lldbutil  class RegistersIteratorTestCase(TestBase): @@ -22,7 +24,7 @@ class RegistersIteratorTestCase(TestBase):          self.line1 = line_number('main.cpp', '// Set break point at this line.')      @add_test_categories(['pyapi']) -    @expectedFailureWindows # Test crashes +    @expectedFailureAll(oslist=["windows"])      def test_iter_registers(self):          """Test iterator works correctly for lldbutil.iter_registers()."""          self.build() diff --git a/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py b/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py index 97bfa3956f6c..fafd05fd92c8 100644 --- a/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py +++ b/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py @@ -9,7 +9,9 @@ from __future__ import print_function  import os, time  import re  import lldb +from lldbsuite.test.decorators import *  from lldbsuite.test.lldbtest import * +from lldbsuite.test import lldbutil  class ThreadsStackTracesTestCase(TestBase): @@ -26,7 +28,9 @@ class ThreadsStackTracesTestCase(TestBase):      #The __thread_start function in libc doesn't contain any epilogue and prologue instructions       #hence unwinding fail when we are stopped in __thread_start      @expectedFailureAll(triple = 'mips*') -    @expectedFailureWindows("llvm.org/pr24778") +    @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778") +    @expectedFlakeyAndroid("llvm.org/26492", archs=["arm"]) +    @expectedFlakeyLinux("llvm.org/pr27687")      @add_test_categories(['pyapi'])      def test_stack_traces(self):          """Test SBprocess and SBThread APIs with printing of the stack traces.""" | 
