We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed0aa99 commit 1815d62Copy full SHA for 1815d62
lldb/unittests/Host/HostTest.cpp
@@ -106,6 +106,10 @@ TEST(Host, LaunchProcessDuplicatesHandle) {
106
Pipe pipe;
107
ASSERT_THAT_ERROR(pipe.CreateNew(/*child_process_inherit=*/false).takeError(),
108
llvm::Succeeded());
109
+ SCOPED_TRACE(llvm::formatv("Pipe handles are: {0}/{1}",
110
+ (uint64_t)pipe.GetReadPipe(),
111
+ (uint64_t)pipe.GetWritePipe())
112
+ .str());
113
ProcessLaunchInfo info;
114
info.SetExecutableFile(FileSpec(TestMainArgv0),
115
/*add_exe_file_as_first_arg=*/true);
0 commit comments