[PATCH] D104455: [clangd] Explicitly fail if the file passed to --check is not valid.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 17 07:41:29 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6765b9c3f119: [clangd] Explicitly fail if the file passed to --check is not valid. (authored by hokein).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104455/new/
https://reviews.llvm.org/D104455
Files:
clang-tools-extra/clangd/tool/ClangdMain.cpp
Index: clang-tools-extra/clangd/tool/ClangdMain.cpp
===================================================================
--- clang-tools-extra/clangd/tool/ClangdMain.cpp
+++ clang-tools-extra/clangd/tool/ClangdMain.cpp
@@ -909,7 +909,11 @@
if (CheckFile.getNumOccurrences()) {
llvm::SmallString<256> Path;
- llvm::sys::fs::real_path(CheckFile, Path, /*expand_tilde=*/true);
+ if (auto Error =
+ llvm::sys::fs::real_path(CheckFile, Path, /*expand_tilde=*/true)) {
+ elog("Failed to resolve path {0}: {1}", CheckFile, Error.message());
+ return 1;
+ }
log("Entering check mode (no LSP server)");
uint32_t Begin = 0, End = std::numeric_limits<uint32_t>::max();
if (!CheckFileLines.empty()) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104455.352721.patch
Type: text/x-patch
Size: 743 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210617/d553cc70/attachment.bin>
More information about the cfe-commits
mailing list