I am using PC-Lint Plus and suppressing few lint warnings throughout the source code. Is there a way in PC-Lint Plus to get a report of line numbers (or file names) where someone has suppressed warnings for software risk analysis ? This will help evaluate if some ignored/suppressed warnings have good reasons to ignore/suppress or should be handled.
Is there a way to get a report of suppressed lint messages?
305 Views Asked by Garry S At
1
There are 1 best solutions below
Related Questions in C
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in STATIC-ANALYSIS
- How to detect functions, that are only called from unused functions using cppcheck?
- Use static analysis tools to check null pointers and memory leaks in Linux device drivers
- Why it is not suggested to pass hardcoded absolute path name to File object constructor File(String)
- Visual Studio - Discover if method is called by another method at some point
- False positive: precondition is redundant
- Cppcheck GUI: Excluding a file or folder from checking
- How to get better results from LLVM's MemoryDependenceAnalysis pass?
- How to enforce static imports for some methods using checkstyle?
- Dealing with code movement when comparing static analysis reports
- Is there a way to find the ignored JUnit Test with the most lines of code in a large codebase?
- JSHint in javascript is not showing all warnings for code to be corrected
- Parsing Hack code into Abstract Syntax Tree
- Understanding x86 r/m32 instruction
- LLVM Error When Using a Pass from Another Pass
- Sonar - Python plugin rules, what tools it uses behind?
Related Questions in LINT
- Suspicious pointer-to-pointer conversion (area too small) in C
- Bypass ESLint's `no-unused-var` for Should in a Mocha test
- ESLint error on semicolon after class declaration ECMAScript 6
- Multiple Lint Files For Each Build Type
- How to set .eslintrc to recognize 'require'?
- Can Lint resolve the include path of Header Files
- Overdraw on separator
- What does "(...) interpreted as grouped expression" mean?
- Custom Lint for Java / Android Report if we find a class call without implementing its interface
- Alternative to bitwise operators in uuid creation
- Is there a way to check for unnecessary @SuppressWarnings annotations?
- How to debug custom lint detector
- How to Run PC-Lint on only locally modified files(Not commited on Server of SVN)
- Lint GradleCompatible and dependencies
- Android Logger detector custom linter
Related Questions in SUPPRESS-WARNINGS
- How to ignore warning errors?
- add line in cmake to edit Makefile definition
- Best way to avoid 'control reaches end of non-void function' warning in release mode
- Pointer parameter was set but never used warning
- How to disable specific warning inherited from parent in Visual Studio?
- Suppress Specific IP Warnings in Modelsim
- g++ alternative to Java's @SuppressWarnings annotation
- How to suppress several warnings but not all of them coming from libraries?
- Java: Array of List<MyClass>
- How to avoid deprecation warnings when @SuppressWarnings("deprecation") doesn't work?
- Checkstyle - whitelist of warnings to suppress
- Why is (void)sizeof(param) not "using" param?
- How can -Wgnu-zero-variadic-macro-arguments warning be turned off with Clang?
- Disable "warning: the address of 'x' will always evaluate as 'true'"
- Why disable specific warning not working in Visual Studio
Related Questions in PC-LINT
- Can Lint resolve the include path of Header Files
- enforce std::nothrow at compile time or during static analysis
- How to Run PC-Lint on only locally modified files(Not commited on Server of SVN)
- Does the order of include files matter when pclint executes?
- No PCLInt warnings are displayed
- PC Lint for incremental build - with error from latest code
- How to exclude particulr 'TI' package path from Pc-lint?
- Dependence placed on C/C++ operator precedence; operators '&&' and '==' [MISRA 2012 Rule 12.1, advisory] | pclint 9050
- Why is FlexeLint giving errors and warnings on C++11 constructs?
- Is there a way to get a report of suppressed lint messages?
- How to define implementation specific (XC8) int types in pc-lint?
- How can PC-Lint be integrated into Qt Creator?
- Lint restricted macro name list
- How does PC-Lint (by Gimpel) look across multiple modules?
- Safe assign of values to bitfield in C
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?
Not that I'm aware of. But it's quite easy to write a script in your favourite scripting language to search for
/*lintand//lint. If you have a rationale in the comment you can also extract that and include it in the report. If you want to be extra fancy you could even match the warning number to e.g. MISRA rules. It's a fun little exercise if you like writing scripts.