diff options
author | Jason Molenda <jmolenda@apple.com> | 2019-10-16 19:14:49 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2019-10-16 19:14:49 +0000 |
commit | 7dd7a3607596a51044b8706ebf6df2e613ce1e9b (patch) | |
tree | ceaacaa39ab7238f81442a520fc67f7c17b7294f /lldb/packages/Python/lldbsuite/test/arm/breakpoint-it | |
parent | 930ada91ce8ff9715e2ca7309bc946dbb9162dfb (diff) | |
download | bcm5719-llvm-7dd7a3607596a51044b8706ebf6df2e613ce1e9b.tar.gz bcm5719-llvm-7dd7a3607596a51044b8706ebf6df2e613ce1e9b.zip |
Add arm64_32 support to lldb, an ILP32 codegen
that runs on arm64 ISA targets, specifically
Apple watches.
Differential Revision: https://reviews.llvm.org/D68858
llvm-svn: 375032
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/arm/breakpoint-it')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py b/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py index d13f9812ca8..18e2afaa360 100644 --- a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py +++ b/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py @@ -17,7 +17,7 @@ class TestBreakpointIt(TestBase): NO_DEBUG_INFO_TESTCASE = True @skipIf(archs=no_match(["arm"])) - @skipIf(archs=["arm64", "arm64e"]) + @skipIf(archs=["arm64", "arm64e", "arm64_32"]) def test_false(self): self.build() exe = self.getBuildArtifact("a.out") @@ -31,7 +31,7 @@ class TestBreakpointIt(TestBase): "Breakpoint does not get hit") @skipIf(archs=no_match(["arm"])) - @skipIf(archs=["arm64", "arm64e"]) + @skipIf(archs=["arm64", "arm64e", "arm64_32"]) def test_true(self): self.build() exe = self.getBuildArtifact("a.out") |