suppress-warningsclang-static-analyzerclang-tidy

clang-tidy: How to suppress warnings?


I recently started experimenting with the clang-tidy tool of llvm. Now I am trying to suppress false warnings from third party library code. For this I want to use the command line options

-header-filter=<string> or -line-filter=<string>

but so far without success. So for people with limited time I will put the question here at the beginning and explain later what I already tried.

Question

What option do I need to give to the clang-tidy tool to suppress a warning from a certain line and file?

if this is not possible

What option works to suppress warnings from external header files?


What I did so far

My original call to clang-tidy looks like this

clang-tidy-3.8 -checks=-*,clang-analyzer-*,-clang-analyzer-alpha* -p Generated/LinuxMakeClangNoPCH Sources/CodeAssistant/ModuleListsFileManipulator_fixtures.cpp

and the first line of the yielded warning that I want to suppress looks like this

.../gmock/gmock-spec-builders.h:1272:5: warning: Use of memory after it is freed [clang-analyzer-cplusplus.NewDelete]
    return function_mocker_->AddNewExpectation(

The gmock people told me that this is a false positive so I want to suppress it. First I tried to use the -line-filter=<string> option. The documentation says:

  -line-filter=<string>      - List of files with line ranges to filter the
                               warnings. Can be used together with
                               -header-filter. The format of the list is a JSON
                               array of objects:
                                 [
                                   {"name":"file1.cpp","lines":[[1,3],[5,7]]},
                                   {"name":"file2.h"}
                                 ]

I assumed that warnings in the given lines are filtered out. But the doc doesent say if they are filterd out or in. After some fiddeling arround I created a .json file with the content

[
  {"name":"gmock-spec-builders.h","lines":[[1272,1272]]}
]

and modified the command line to

clang-tidy-3.8 -checks=-*,clang-analyzer-*,-clang-analyzer-alpha* -p Generated/LinuxMakeClangNoPCH -line-filter="$(< Sources/CodeAssistant/CodeAssistant_ClangTidySuppressions.json)" Sources/CodeAssistant/ModuleListsFileManipulator_fixtures.cpp

which writes the content of the file into the argument. This suppresses the warning, but not only this warning, but all warnings from the ModuleListsFileManipulator_fixtures.cpp file. I tried more stuff but I could not make it work.

So I tried the -header-filter=<string> option. Here the documentation states that one has to give a regular expression that matches all the header files from which diagnostics shall be displayed. Ok, I thought, lets use a regualar expression that matches everything that is in the same folder as the analyzed .cpp file. I can live with that although it may remove warnings that result from me using external headers wrong.

Here I was not sure if the regular expression must match the full (absolute) filename or only a part of the filename. I tried

-header-filter=.*\/CodeAssistant\/.*.h

which matches all absolute header filenames in the CodeAssistant folder but it did not suppress the warnings from the gmock-spec-builders.h file.

So preferably I would like to suppress each warning individually so I can determine for each if it is a real problem or not, but if this is not possible I could also live with suppressing warnings from entire external headers.

Thank you for your time.


Solution

  • I solved the problem by adding // NOLINT to line 1790 of gmock-spec-builders.h

    Here is the diff:

    --- gmock-spec-builders.orig.h  2016-09-17 09:46:48.527313088 +0200
    +++ gmock-spec-builders.h       2016-09-17 09:46:58.958353697 +0200
    @@ -1787,7 +1787,7 @@
     #define ON_CALL(obj, call) GMOCK_ON_CALL_IMPL_(obj, call)
    
     #define GMOCK_EXPECT_CALL_IMPL_(obj, call) \
    -    ((obj).gmock_##call).InternalExpectedAt(__FILE__, __LINE__, #obj, #call)
    +    ((obj).gmock_##call).InternalExpectedAt(__FILE__, __LINE__, #obj, #call) // NOLINT
     #define EXPECT_CALL(obj, call) GMOCK_EXPECT_CALL_IMPL_(obj, call)
    
     #endif  // GMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_
    

    It would be nice to either upstream this patch (I see other NOLINT in the code) or post a bug report with the clang-tidy folks.