[Lldb-commits] [lldb] [LLDB] Fix test failure introduced by #83234 (PR #83406)

via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 29 03:10:08 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Sudharsan Veeravalli (svs-quic)

<details>
<summary>Changes</summary>

Missed adding a . in the test check

---
Full diff: https://github.com/llvm/llvm-project/pull/83406.diff


1 Files Affected:

- (modified) lldb/test/API/functionalities/completion/TestCompletion.py (+1-1) 


``````````diff
diff --git a/lldb/test/API/functionalities/completion/TestCompletion.py b/lldb/test/API/functionalities/completion/TestCompletion.py
index 2f6af3cfce109d..0d6907e0c3d229 100644
--- a/lldb/test/API/functionalities/completion/TestCompletion.py
+++ b/lldb/test/API/functionalities/completion/TestCompletion.py
@@ -65,7 +65,7 @@ def do_test_variable_completion(self, command):
         self.complete_from_to(f"{command} fooo.dd", f"{command} fooo.dd")
 
         self.complete_from_to(f"{command} ptr_fooo->", f"{command} ptr_fooo->t")
-        self.complete_from_to(f"{command} ptr_fooo->t", f"{command} ptr_fooo->t.x")
+        self.complete_from_to(f"{command} ptr_fooo->t.", f"{command} ptr_fooo->t.x")
         self.complete_from_to(f"{command} ptr_fooo->dd", f"{command} ptr_fooo->dd")
 
         self.complete_from_to(f"{command} cont", f"{command} container")

``````````

</details>


https://github.com/llvm/llvm-project/pull/83406


More information about the lldb-commits mailing list