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
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to