Disable TestArgumentPassingRestrictions for clang < 7

http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-matrix/

llvm-svn: 359812
This commit is contained in:
Jonas Devlieghere 2019-05-02 18:26:46 +00:00
parent bd689b9c6b
commit 0682fc5e5f
1 changed files with 2 additions and 1 deletions

View File

@ -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()