From 45a3fd206fb06f77a08968c99a8172cbf2ccdd0f Mon Sep 17 00:00:00 2001 From: Alex Langford Date: Tue, 23 Jul 2019 22:12:16 +0000 Subject: [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 Differential Revision: https://reviews.llvm.org/D64767 llvm-svn: 366858 --- .../watchpoint_commands/command/TestWatchpointCommandLLDB.py | 6 ++++-- .../watchpoint_commands/command/TestWatchpointCommandPython.py | 6 ++++-- .../watchpoint_commands/condition/TestWatchpointConditionCmd.py | 1 + .../watchpoint/watchpoint_events/TestWatchpointEvents.py | 1 + 4 files changed, 10 insertions(+), 4 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/watchpoint') 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"], -- cgit v1.2.3