diff options
author | Pavel Labath <labath@google.com> | 2018-02-28 20:57:26 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-02-28 20:57:26 +0000 |
commit | 2b2d728c7ba8eae9cfa4ee18f0ea21fa71d3c75d (patch) | |
tree | 83eba7cacbaa851fa613123ce57334c1b0b28c1d /lldb/packages/Python/lldbsuite/test/functionalities/watchpoint | |
parent | 79712097c779f399fccd7fe739d5595829fd19e8 (diff) | |
download | bcm5719-llvm-2b2d728c7ba8eae9cfa4ee18f0ea21fa71d3c75d.tar.gz bcm5719-llvm-2b2d728c7ba8eae9cfa4ee18f0ea21fa71d3c75d.zip |
Adapt some tests to work with PPC64le architecture
Summary: Merge branch 'master' into adaptPPC64tests
Reviewers: clayborg, alexandreyy, labath
Reviewed By: clayborg, alexandreyy
Subscribers: luporl, lbianc, alexandreyy, lldb-commits
Differential Revision: https://reviews.llvm.org/D42917
Patch by Ana Julia Caetano <ana.caetano@eldorado.org.br>.
llvm-svn: 326369
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/watchpoint')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/TestMultipleHits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/TestMultipleHits.py b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/TestMultipleHits.py index 962ba3408f1..7302f76c1fb 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/TestMultipleHits.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/TestMultipleHits.py @@ -21,7 +21,7 @@ class MultipleHitsTestCase(TestBase): @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24446: WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows") - @skipIf(bugnumber="llvm.org/pr30758", oslist=["linux"], archs=["arm", "aarch64"]) + @skipIf(bugnumber="llvm.org/pr30758", oslist=["linux"], archs=["arm", "aarch64", "powerpc64le"]) def test(self): self.build() exe = self.getBuildArtifact("a.out") |