From c0d8f0ca7d8f620e19447856e88c1131c538be78 Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Tue, 3 Nov 2015 01:47:19 +0000 Subject: [PATCH] Emit an error message if the current working directory does not exist when the user is trying to launch argdumper to do shell expansion llvm-svn: 251882 --- lldb/source/Host/macosx/Host.mm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lldb/source/Host/macosx/Host.mm b/lldb/source/Host/macosx/Host.mm index 57be7d862d7d..8899b9c675c2 100644 --- a/lldb/source/Host/macosx/Host.mm +++ b/lldb/source/Host/macosx/Host.mm @@ -1371,7 +1371,13 @@ Host::ShellExpandArguments (ProcessLaunchInfo &launch_info) int status; std::string output; - RunShellCommand(expand_command, launch_info.GetWorkingDirectory(), &status, nullptr, &output, 10); + FileSpec cwd(launch_info.GetWorkingDirectory()); + if (!cwd.Exists()) + { + error.SetErrorStringWithFormat("cwd does not exist; cannot launch with shell argument expansion"); + return error; + } + RunShellCommand(expand_command, cwd, &status, nullptr, &output, 10); if (status != 0) {