diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/argument_passing_restrictions/TestArgumentPassingRestrictions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/argument_passing_restrictions/TestArgumentPassingRestrictions.py b/lldb/packages/Python/lldbsuite/test/expression_command/argument_passing_restrictions/TestArgumentPassingRestrictions.py index 5cf05db1f8b..858f2785be8 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/argument_passing_restrictions/TestArgumentPassingRestrictions.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/argument_passing_restrictions/TestArgumentPassingRestrictions.py @@ -9,16 +9,17 @@ and to also make sure that the ASTImporter is copying over this setting when importing the CXXRecordDecl via setArgPassingRestrictions. """ - import lldb from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil + class TestArgumentPassingRestrictions(TestBase): mydir = TestBase.compute_mydir(__file__) + @skipIf(compiler="clang", compiler_version=['<', '7.0']) def test_argument_passing_restrictions(self): self.build() |