[Lldb-commits] [PATCH] D12584: Fix TestCompletion.py failure on Darwin after r246639

Ying Chen via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 2 19:13:15 PDT 2015


chying created this revision.
chying added a reviewer: tberghammer.
chying added a subscriber: lldb-commits.

- send empty line for multiple commands to complete

http://reviews.llvm.org/D12584

Files:
  test/functionalities/completion/TestCompletion.py

Index: test/functionalities/completion/TestCompletion.py
===================================================================
--- test/functionalities/completion/TestCompletion.py
+++ test/functionalities/completion/TestCompletion.py
@@ -269,6 +269,8 @@
                 child.send("%s\t" % str_input)
                 child.sendline('')
                 child.expect_exact(prompt)
+                child.sendline('')
+                child.expect_exact(prompt)
 
         # Now that the necessary logging is done, restore logfile to None to
         # stop further logging.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12584.33898.patch
Type: text/x-patch
Size: 574 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150903/fb622330/attachment.bin>


More information about the lldb-commits mailing list