[Lldb-commits] [PATCH] D126021: [lldb/test] Fix PExpect.launch issue when disabling color support
Med Ismail Bennani via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu May 19 14:47:37 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG027499a82434: [lldb/test] Fix PExpect.launch issue when disabling color support (authored by mib).
Herald added a subscriber: lldb-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126021/new/
https://reviews.llvm.org/D126021
Files:
lldb/packages/Python/lldbsuite/test/lldbpexpect.py
Index: lldb/packages/Python/lldbsuite/test/lldbpexpect.py
===================================================================
--- lldb/packages/Python/lldbsuite/test/lldbpexpect.py
+++ lldb/packages/Python/lldbsuite/test/lldbpexpect.py
@@ -34,7 +34,7 @@
args += run_under
args += [lldbtest_config.lldbExec, '--no-lldbinit']
if not use_colors:
- args += '--no-use-colors'
+ args.append('--no-use-colors')
for cmd in self.setUpCommands():
if "use-color false" in cmd and use_colors:
continue
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D126021.430813.patch
Type: text/x-patch
Size: 582 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220519/5150a9a7/attachment-0001.bin>
More information about the lldb-commits
mailing list