Skip to content

Commit

Permalink
Reland "[clang][deps] During scanning don't emit warnings-as-errors t…
Browse files Browse the repository at this point in the history
…hat are ignored with diagnostic pragmas."

This reverts commit 2f8ac18.

After committing a fix for previous buildbot failures in D138970,
re-landing the original change.
  • Loading branch information
vsapsai committed Dec 2, 2022
1 parent 2d6ec14 commit 642c663
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
Expand Up @@ -135,8 +135,8 @@ static void sanitizeDiagOpts(DiagnosticOptions &DiagOpts) {
DiagOpts.ShowCarets = false;
// Don't write out diagnostic file.
DiagOpts.DiagnosticSerializationFile.clear();
// Don't treat warnings as errors.
DiagOpts.Warnings.push_back("no-error");
// Don't emit warnings as errors (and all other warnings too).
DiagOpts.IgnoreWarnings = true;
}

/// A clang tool that runs the preprocessor in a mode that's optimized for
Expand Down
35 changes: 35 additions & 0 deletions clang/test/ClangScanDeps/diagnostic-pragmas.c
@@ -0,0 +1,35 @@
// Test scanning deps does not have more errors than the regular compilation.

// RUN: rm -rf %t
// RUN: split-file %s %t
// RUN: sed "s|DIR|%/t|g" %t/cdb.json.template > %t/cdb.json

// Check the regular compilation does not fail.
// RUN: %clang -fsyntax-only %t/test.c -I %t/include -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -Wnon-modular-include-in-module -Werror=non-modular-include-in-module

// And now scanning deps should succeed too.
// RUN: clang-scan-deps -compilation-database %t/cdb.json -j 1

//--- cdb.json.template
[
{
"directory": "DIR",
"command": "clang -fsyntax-only DIR/test.c -I DIR/include -fmodules -fimplicit-module-maps -fmodules-cache-path=DIR/cache -Wnon-modular-include-in-module -Werror=non-modular-include-in-module",
"file": "DIR/test.c"
},
]

//--- include/nonmodular.h
// empty

//--- include/modular-includer.h
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnon-modular-include-in-module"
#include <nonmodular.h>
#pragma clang diagnostic pop

//--- include/module.modulemap
module ModularIncluder { header "modular-includer.h" }

//--- test.c
#include <modular-includer.h>

0 comments on commit 642c663

Please sign in to comment.