jansvoboda11 updated this revision to Diff 369658. jansvoboda11 added a comment.
Rebase Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D108976/new/ https://reviews.llvm.org/D108976 Files: clang/include/clang/Tooling/Tooling.h clang/lib/Tooling/Tooling.cpp clang/unittests/Tooling/ToolingTest.cpp
Index: clang/unittests/Tooling/ToolingTest.cpp =================================================================== --- clang/unittests/Tooling/ToolingTest.cpp +++ clang/unittests/Tooling/ToolingTest.cpp @@ -265,6 +265,41 @@ EXPECT_EQ(Consumer.NumErrorsSeen, 0u); } +TEST(ToolInvocation, CustomDiagnosticOptionsOverwriteParsedOnes) { + llvm::IntrusiveRefCntPtr<llvm::vfs::OverlayFileSystem> OverlayFileSystem( + new llvm::vfs::OverlayFileSystem(llvm::vfs::getRealFileSystem())); + llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( + new llvm::vfs::InMemoryFileSystem); + OverlayFileSystem->pushOverlay(InMemoryFileSystem); + llvm::IntrusiveRefCntPtr<FileManager> Files( + new FileManager(FileSystemOptions(), OverlayFileSystem)); + + std::vector<std::string> Args; + Args.push_back("tool-executable"); + Args.push_back("-target"); + // Invalid argument that by default results in an error diagnostic: + Args.push_back("i386-apple-ios14.0-simulator"); + // Argument that downgrades the error into a warning: + Args.push_back("-Wno-error=invalid-ios-deployment-target"); + Args.push_back("-fsyntax-only"); + Args.push_back("test.cpp"); + + clang::tooling::ToolInvocation Invocation( + Args, std::make_unique<SyntaxOnlyAction>(), Files.get()); + InMemoryFileSystem->addFile( + "test.cpp", 0, llvm::MemoryBuffer::getMemBuffer("int a() {}\n")); + ErrorCountingDiagnosticConsumer Consumer; + Invocation.setDiagnosticConsumer(&Consumer); + + auto DiagOpts = llvm::makeIntrusiveRefCnt<DiagnosticOptions>(); + Invocation.setDiagnosticOptions(&*DiagOpts); + + EXPECT_TRUE(Invocation.run()); + // Check that `-Wno-error=invalid-ios-deployment-target` didn't downgrade the + // error into a warning due to being overwritten by custom diagnostic options. + EXPECT_EQ(Consumer.NumErrorsSeen, 1u); +} + struct DiagnosticConsumerExpectingSourceManager : public DiagnosticConsumer { bool SawSourceManager; Index: clang/lib/Tooling/Tooling.cpp =================================================================== --- clang/lib/Tooling/Tooling.cpp +++ clang/lib/Tooling/Tooling.cpp @@ -343,10 +343,17 @@ for (const std::string &Str : CommandLine) Argv.push_back(Str.c_str()); const char *const BinaryName = Argv[0]; - IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = - CreateAndPopulateDiagOpts(Argv); - TextDiagnosticPrinter DiagnosticPrinter( - llvm::errs(), &*DiagOpts); + + // Parse diagnostic options from the driver command-line only if none were + // explicitly set. + IntrusiveRefCntPtr<DiagnosticOptions> ParsedDiagOpts; + DiagnosticOptions *DiagOpts = this->DiagOpts; + if (!DiagOpts) { + ParsedDiagOpts = CreateAndPopulateDiagOpts(Argv); + DiagOpts = &*ParsedDiagOpts; + } + + TextDiagnosticPrinter DiagnosticPrinter(llvm::errs(), DiagOpts); IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics = CompilerInstance::createDiagnostics( &*DiagOpts, DiagConsumer ? DiagConsumer : &DiagnosticPrinter, false); Index: clang/include/clang/Tooling/Tooling.h =================================================================== --- clang/include/clang/Tooling/Tooling.h +++ clang/include/clang/Tooling/Tooling.h @@ -268,11 +268,17 @@ ~ToolInvocation(); - /// Set a \c DiagnosticConsumer to use during parsing. + /// Set a \c DiagnosticConsumer to use during driver command-line parsing and + /// the action invocation itself. void setDiagnosticConsumer(DiagnosticConsumer *DiagConsumer) { this->DiagConsumer = DiagConsumer; } + /// Set a \c DiagnosticOptions to use during driver command-line parsing. + void setDiagnosticOptions(DiagnosticOptions *DiagOpts) { + this->DiagOpts = DiagOpts; + } + /// Run the clang invocation. /// /// \returns True if there were no errors during execution. @@ -290,6 +296,7 @@ FileManager *Files; std::shared_ptr<PCHContainerOperations> PCHContainerOps; DiagnosticConsumer *DiagConsumer = nullptr; + DiagnosticOptions *DiagOpts = nullptr; }; /// Utility to run a FrontendAction over a set of files.
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits