diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/inline-stepping')
| -rw-r--r-- | packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py b/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py index 023f6f31e395..8257106888d6 100644 --- a/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py +++ b/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py @@ -6,18 +6,16 @@ from __future__ import print_function  import os, time, sys  import lldb -import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.decorators import *  from lldbsuite.test.lldbtest import * +from lldbsuite.test import lldbutil  class TestInlineStepping(TestBase):      mydir = TestBase.compute_mydir(__file__)      @add_test_categories(['pyapi']) -    @expectedFailureFreeBSD('llvm.org/pr17214') -    @expectedFailureIcc # Not really a bug.  ICC combines two inlined functions. -    # failed 1/365 dosep runs, (i386-clang), TestInlineStepping.py:237 failed to stop at first breakpoint in main -    @expectedFailureAll(oslist=["linux"], archs=["i386"]) +    @expectedFailureAll(compiler="icc", bugnumber="# Not really a bug.  ICC combines two inlined functions.")      def test_with_python_api(self):          """Test stepping over and into inlined functions."""          self.build() | 
