forked from OSchip/llvm-project
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:
parent
bd689b9c6b
commit
0682fc5e5f
|
@ -9,16 +9,17 @@ and to also make sure that the ASTImporter is copying over this
|
||||||
setting when importing the CXXRecordDecl via setArgPassingRestrictions.
|
setting when importing the CXXRecordDecl via setArgPassingRestrictions.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
import lldb
|
import lldb
|
||||||
from lldbsuite.test.decorators import *
|
from lldbsuite.test.decorators import *
|
||||||
from lldbsuite.test.lldbtest import *
|
from lldbsuite.test.lldbtest import *
|
||||||
from lldbsuite.test import lldbutil
|
from lldbsuite.test import lldbutil
|
||||||
|
|
||||||
|
|
||||||
class TestArgumentPassingRestrictions(TestBase):
|
class TestArgumentPassingRestrictions(TestBase):
|
||||||
|
|
||||||
mydir = TestBase.compute_mydir(__file__)
|
mydir = TestBase.compute_mydir(__file__)
|
||||||
|
|
||||||
|
@skipIf(compiler="clang", compiler_version=['<', '7.0'])
|
||||||
def test_argument_passing_restrictions(self):
|
def test_argument_passing_restrictions(self):
|
||||||
self.build()
|
self.build()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue