diff options
author | Jason Molenda <jmolenda@apple.com> | 2019-01-17 22:26:25 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2019-01-17 22:26:25 +0000 |
commit | 03e26de4d26a94f8e7e2bf0d7371712faf299a05 (patch) | |
tree | 1ddbd42469e629bc6f64084eaa9f9d3b7fd52182 /lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py | |
parent | 43977e8aa9ab18b80088c4d3732c08b6928b3f96 (diff) | |
download | bcm5719-llvm-03e26de4d26a94f8e7e2bf0d7371712faf299a05.tar.gz bcm5719-llvm-03e26de4d26a94f8e7e2bf0d7371712faf299a05.zip |
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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py b/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py index f020a653852..6540261262a 100644 --- a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py +++ b/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py @@ -18,6 +18,7 @@ class TestBreakpointThumbCodesection(TestBase): mydir = TestBase.compute_mydir(__file__) @skipIf(archs=no_match(["arm"])) + @skipIfDarwinEmbedded # codegen on darwin always defaults to thumb for armv7/armv7k targets def test_breakpoint(self): self.build() exe = self.getBuildArtifact("a.out") |