diff options
author | Alex Langford <apl@fb.com> | 2019-07-23 22:12:16 +0000 |
---|---|---|
committer | Alex Langford <apl@fb.com> | 2019-07-23 22:12:16 +0000 |
commit | 45a3fd206fb06f77a08968c99a8172cbf2ccdd0f (patch) | |
tree | 9468b964beac3f7a6e123dd742d782f9696e07e0 /lldb/packages/Python/lldbsuite/test/functionalities/watchpoint | |
parent | 511f7f5785e58a75fd82675336fa7fc90ba45c76 (diff) | |
download | bcm5719-llvm-45a3fd206fb06f77a08968c99a8172cbf2ccdd0f.tar.gz bcm5719-llvm-45a3fd206fb06f77a08968c99a8172cbf2ccdd0f.zip |
[lldb][test_suite] Update tests with unexpected pass on Android aarch64
Summary: update some test decorates that can actually pass on andriod aarch64
Patch by Wanyi Ye <kusmour@gmail.com>
Differential Revision: https://reviews.llvm.org/D64767
llvm-svn: 366858
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/watchpoint')
4 files changed, 10 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py index b4b6ebe9bfc..ba0cdd09d59 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py @@ -36,7 +36,8 @@ class WatchpointLLDBCommandTestCase(TestBase): @expectedFailureAll( oslist=["linux"], archs=["aarch64"], - bugnumber="llvm.org/pr27710") + triple=no_match(".*-android"), + bugnumber="llvm.org/pr27710") # work on android @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24446: WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows") @@ -105,7 +106,8 @@ class WatchpointLLDBCommandTestCase(TestBase): @expectedFailureAll( oslist=["linux"], archs=["aarch64"], - bugnumber="llvm.org/pr27710") + triple=no_match(".*-android"), + bugnumber="llvm.org/pr27710") # work on android @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24446: WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows") diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py index 431298a9f99..b32bf08c8d5 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py @@ -40,7 +40,8 @@ class WatchpointPythonCommandTestCase(TestBase): @expectedFailureAll( oslist=["linux"], archs=["aarch64"], - bugnumber="llvm.org/pr27710") + triple=no_match(".*-android"), + bugnumber="llvm.org/pr27710") # work on android @expectedFailureNetBSD def test_watchpoint_command(self): """Test 'watchpoint command'.""" @@ -111,7 +112,8 @@ class WatchpointPythonCommandTestCase(TestBase): @expectedFailureAll( oslist=["linux"], archs=["aarch64"], - bugnumber="llvm.org/pr27710") + triple=no_match(".*-android"), + bugnumber="llvm.org/pr27710") # work on android @expectedFailureNetBSD def test_continue_in_watchpoint_command(self): """Test continue in a watchpoint command.""" diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py index b4b489e8948..c11a4d1cc79 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py @@ -36,6 +36,7 @@ class WatchpointConditionCmdTestCase(TestBase): @expectedFailureAll( oslist=["linux"], archs=["aarch64"], + triple=no_match(".*-android"), bugnumber="llvm.org/pr27710") @expectedFailureAll( oslist=["windows"], diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py index cedfad9b566..b82265a890f 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py @@ -25,6 +25,7 @@ class TestWatchpointEvents (TestBase): @expectedFailureAll( oslist=["linux"], archs=["aarch64"], + triple=no_match(".*-android"), bugnumber="llvm.org/pr27710") @expectedFailureAll( oslist=["windows"], |