[Lldb-commits] [lldb] [lldb] Fixed the TestCompletion test on the Linux AArch64 target (PR #93345)
via lldb-commits
lldb-commits at lists.llvm.org
Fri May 24 13:40:36 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Dmitry Vasilyev (slydiman)
<details>
<summary>Changes</summary>
PlatformPOSIX::DoLoadImage() failed on the Linux AArch64 target. It is related to the issue #<!-- -->93092. Disable the TestCompletion.test_process_unload test for now.
---
Full diff: https://github.com/llvm/llvm-project/pull/93345.diff
1 Files Affected:
- (modified) lldb/test/API/functionalities/completion/TestCompletion.py (+3)
``````````diff
diff --git a/lldb/test/API/functionalities/completion/TestCompletion.py b/lldb/test/API/functionalities/completion/TestCompletion.py
index 15aeaf8d0e897..eadb510a3df26 100644
--- a/lldb/test/API/functionalities/completion/TestCompletion.py
+++ b/lldb/test/API/functionalities/completion/TestCompletion.py
@@ -97,6 +97,9 @@ def test_process_load(self):
self.complete_from_to("process load Makef", "process load Makefile")
@skipUnlessPlatform(["linux"])
+ @expectedFailureAll(
+ archs=["aarch64"], bugnumber="github.com/llvm/llvm-project/issues/93092"
+ )
def test_process_unload(self):
"""Test the completion for "process unload <index>" """
# This tab completion should not work without a running process.
``````````
</details>
https://github.com/llvm/llvm-project/pull/93345
More information about the lldb-commits
mailing list