diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-02 18:26:46 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-02 18:26:46 +0000 |
commit | 0682fc5e5fb4174b4dc5ede3be11680b4017518d (patch) | |
tree | 26e09038911726eb248c2ac92da4ffef92a337a2 /lldb/packages/Python/lldbsuite/test | |
parent | bd689b9c6b8112d08cd2f4763acae3bc8f9edfbb (diff) | |
download | bcm5719-llvm-0682fc5e5fb4174b4dc5ede3be11680b4017518d.tar.gz bcm5719-llvm-0682fc5e5fb4174b4dc5ede3be11680b4017518d.zip |
Disable TestArgumentPassingRestrictions for clang < 7
http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-matrix/
llvm-svn: 359812
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() |