[Lldb-commits] [PATCH] D83425: [lldb] add printing of stdout compile errors to lldbsuite
Benson Li via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 15 13:20:32 PDT 2020
bbli updated this revision to Diff 278292.
bbli added a comment.
Modified stderr output instead of concatenating the stderr and stdout output strings.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83425/new/
https://reviews.llvm.org/D83425
Files:
lldb/packages/Python/lldbsuite/test/lldbtest.py
lldb/packages/Python/lldbsuite/test_event/build_exception.py
Index: lldb/packages/Python/lldbsuite/test_event/build_exception.py
===================================================================
--- lldb/packages/Python/lldbsuite/test_event/build_exception.py
+++ lldb/packages/Python/lldbsuite/test_event/build_exception.py
@@ -4,8 +4,7 @@
super(BuildError, self).__init__("Error when building test subject")
self.command = called_process_error.lldb_extensions.get(
"command", "<command unavailable>")
- self.build_error = called_process_error.lldb_extensions.get(
- "stderr_content", "<error output unavailable>")
+ self.build_error = called_process_error.lldb_extensions["stdout_content"]
def __str__(self):
return self.format_build_error(self.command, self.build_error)
Index: lldb/packages/Python/lldbsuite/test/lldbtest.py
===================================================================
--- lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -426,7 +426,7 @@
process = Popen(
shellCommand,
stdout=PIPE,
- stderr=PIPE,
+ stderr=STDOUT,
shell=True,
**kwargs)
pid = process.pid
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83425.278292.patch
Type: text/x-patch
Size: 1242 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200715/809223f9/attachment.bin>
More information about the lldb-commits
mailing list