Reland "[LLDB] Fix the use of "platform process launch" with no extra arguments"

This reverts commit 3254623d73fb7252385817d8057640c9d5d5ffd1.

One test has been updated to add the "-s" flag which along with
86fd957af981f146a306831608d7ad2de65b9560 should fix the tests on MacOS.

An assert on hijack listener added in that patch was removed, it seems
to be correct on MacOS but not on Linux.
This commit is contained in:
David Spickett 2023-06-28 08:01:14 +00:00
parent b24b6c4a32
commit 728101f972
4 changed files with 76 additions and 4 deletions

View File

@ -1208,8 +1208,12 @@ protected:
if (m_options.launch_info.GetExecutableFile()) {
Debugger &debugger = GetDebugger();
if (argc == 0)
target->GetRunArguments(m_options.launch_info.GetArguments());
if (argc == 0) {
// If no arguments were given to the command, use target.run-args.
Args target_run_args;
target->GetRunArguments(target_run_args);
m_options.launch_info.GetArguments().AppendArguments(target_run_args);
}
ProcessSP process_sp(platform_sp->DebugProcess(
m_options.launch_info, debugger, *target, error));
@ -1229,8 +1233,6 @@ protected:
!synchronous_execution &&
launch_info.GetFlags().Test(eLaunchFlagStopAtEntry);
assert(launch_info.GetHijackListener());
EventSP first_stop_event_sp;
StateType state = process_sp->WaitForProcessToStop(
std::nullopt, &first_stop_event_sp, rebroadcast_first_stop,

View File

@ -0,0 +1,3 @@
C_SOURCES := main.c
include Makefile.rules

View File

@ -0,0 +1,59 @@
"""
Test platform process launch.
"""
from textwrap import dedent
from lldbsuite.test.lldbtest import TestBase
class ProcessLaunchTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True
def setup(self):
self.build()
exe = self.getBuildArtifact("a.out")
self.runCmd("file " + exe)
return (exe, self.getBuildArtifact("stdio.log"))
def test_process_launch_no_args(self):
# When there are no extra arguments we just have 0, the program name.
exe, outfile = self.setup()
self.runCmd("platform process launch --stdout {} -s".format(outfile))
self.runCmd("continue")
with open(outfile) as f:
self.assertEqual(dedent("""\
Got 1 argument(s).
[0]: {}
""".format(exe)), f.read())
def test_process_launch_command_args(self):
exe, outfile = self.setup()
# Arguments given via the command override those in the settings.
self.runCmd("settings set target.run-args D E")
self.runCmd("platform process launch --stdout {} -s -- A B C".format(outfile))
self.runCmd("continue")
with open(outfile) as f:
self.assertEqual(dedent("""\
Got 4 argument(s).
[0]: {}
[1]: A
[2]: B
[3]: C
""".format(exe)), f.read())
def test_process_launch_target_args(self):
exe, outfile = self.setup()
# When no arguments are passed via the command, use the setting.
self.runCmd("settings set target.run-args D E")
self.runCmd("platform process launch --stdout {} -s".format(outfile))
self.runCmd("continue")
with open(outfile) as f:
self.assertEqual(dedent("""\
Got 3 argument(s).
[0]: {}
[1]: D
[2]: E
""".format(exe)), f.read())

View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main(int argc, char const *argv[]) {
printf("Got %d argument(s).\n", argc);
for (int i = 0; i < argc; ++i)
printf("[%d]: %s\n", i, argv[i]);
return 0;
}