[Lldb-commits] [lldb] 4f644ff - [lldb] XFAIL TestThreadPlanCommands _only_ on aarch64
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 6 01:36:11 PDT 2020
Author: Pavel Labath
Date: 2020-04-06T10:36:02+02:00
New Revision: 4f644ff9e8738b5fde4825b929ec69d0b78ed2ea
URL: https://github.com/llvm/llvm-project/commit/4f644ff9e8738b5fde4825b929ec69d0b78ed2ea
DIFF: https://github.com/llvm/llvm-project/commit/4f644ff9e8738b5fde4825b929ec69d0b78ed2ea.diff
LOG: [lldb] XFAIL TestThreadPlanCommands _only_ on aarch64
The test works fine on x86-linux.
Added:
Modified:
lldb/test/API/functionalities/thread_plan/TestThreadPlanCommands.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/thread_plan/TestThreadPlanCommands.py b/lldb/test/API/functionalities/thread_plan/TestThreadPlanCommands.py
index 5214a3f6b0fe..ddc88cce75f1 100644
--- a/lldb/test/API/functionalities/thread_plan/TestThreadPlanCommands.py
+++ b/lldb/test/API/functionalities/thread_plan/TestThreadPlanCommands.py
@@ -17,7 +17,7 @@ class TestThreadPlanCommands(TestBase):
NO_DEBUG_INFO_TESTCASE = True
@skipIfWindows
- @expectedFailureAll(oslist=["linux"])
+ @expectedFailureAll(oslist=["linux"], archs=["aarch64"])
def test_thread_plan_actions(self):
self.build()
self.main_source_file = lldb.SBFileSpec("main.c")
More information about the lldb-commits
mailing list