https://github.com/svs-quic created 
https://github.com/llvm/llvm-project/pull/83406

Missed adding a . in the test check

>From 1e686b765ba8a456f6a53731a2de2f28d41f6a9c Mon Sep 17 00:00:00 2001
From: Sudharsan Veeravalli <quic_...@quicinc.com>
Date: Thu, 29 Feb 2024 16:20:35 +0530
Subject: [PATCH] [LLDB] Fix test failure introduced by #83234

---
 lldb/test/API/functionalities/completion/TestCompletion.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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")

_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to