Don't run TestBreakpointThumbCodesection.py on darwin systems;

we don't use a thumb code section.

Don't run Test128BitsInteger.py on armv7k; it's not a supported
type on that target.

llvm-svn: 351490
This commit is contained in:
Jason Molenda 2019-01-17 22:26:25 +00:00
parent 43977e8aa9
commit 03e26de4d2
2 changed files with 4 additions and 1 deletions

View File

@ -18,6 +18,7 @@ class TestBreakpointThumbCodesection(TestBase):
mydir = TestBase.compute_mydir(__file__) mydir = TestBase.compute_mydir(__file__)
@skipIf(archs=no_match(["arm"])) @skipIf(archs=no_match(["arm"]))
@skipIfDarwinEmbedded # codegen on darwin always defaults to thumb for armv7/armv7k targets
def test_breakpoint(self): def test_breakpoint(self):
self.build() self.build()
exe = self.getBuildArtifact("a.out") exe = self.getBuildArtifact("a.out")

View File

@ -1,4 +1,6 @@
from lldbsuite.test import lldbinline from lldbsuite.test import lldbinline
from lldbsuite.test import decorators from lldbsuite.test import decorators
lldbinline.MakeInlineTest(__file__, globals()) lldbinline.MakeInlineTest(__file__, globals(),
decorators.skipIf(archs=["armv7k"]))