The defects discovered by coverity SA including errors of STLPort, Boost, Qt libs as well, Is there any way to exclude these errors while running cov-build or cov-analyze?
Coverity SA - excluding boost, stlport errors
1.3k Views Asked by Shrikant At
1
There are 1 best solutions below
Related Questions in COVERITY-PREVENT
- Is underscore allowed in case labels?
- Coverity Prevent: how to handle "checked return" warning when I deliberately don't check the return?
- How to get Coverity static analysis compatible with C++0x standard?
- C++ and coverity issues
- How to Initialise an instance of GUITHREADINFO
- Tainted string message from Coverity using getenv
- How well does static code analysis work with Spring and other abstractions?
- Coverity analysis shows error with const type. How to resolve this?
- "x = ++x" is it really undefined?
- Silencing false positives in Coverity Prevent
- Resource leak during object creation
- how do i fix this overrun?
- Project is not listed in coverity portal
- what is difference betwen REVERSE_INULL and FORWARD_NULL error in coverity scan(static code analysis)?
- backing up coverity PostgreSQL database to file
Related Questions in COVERITY
- Coverity warns on default initialization of local variables
- Need help in configuring Jenkins with Coverity. Getting Error Message
- Failed to download summaries index for snapshot in Coverity
- Coverity cov-build crashes in latest Debian testing (8.5 and 8.7 versions)
- Is anybody else having problems with Coverity Scan Build tool version 8.7.0?
- Coverity and "Failed to initialize ICU, try using the --prevent-root option"
- Coverity and "Your request for analysis of Phonations/TravisTest failed"
- Does Coverity support xbuild (mono)?
- passing tainted variable to a tainted sink
- Suppressing a null dereference warning in static analysis coming from stub implementations in tests
- How do I ignore /usr/include in Coverity Scan?
- Coverity. Configure to ignore certain sections of the source code
- How to Initialise an instance of GUITHREADINFO
- input validation with std::ifstream
- Tainted string message from Coverity using getenv
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There are several ways to exclude these libraries.
At the highest level, you can choose to exclude them during build or analysis and then there won't be any results for them in the UI, unfortunately that also means that you will not get as complete of a view of your own errors in your own code, since analysis does inter procedural examination of various interactions.
So instead you can do something that's easier. Go ahead, analyze all of the code including all the libraries, etc. but then set up components in the UI and create permissions on the components corresponding to "third party" source such that the users can see the source code (and can navigate to it) but cannot see the defects. This allows complete information in the UI for developers triaging defects in their own code without being distracted by defects in code they don't have control over.