In this section:
You can suppress individual instances of findings, all instances of a finding type in a file, or all findings in the file from the Findings view.
Right-click on a single finding or a group of selected findings and choose Suppress from the menu.
Enter a reason for suppressing the finding and choose where the suppression will be stored.
You can select one of the following storage options:
You can review suppressed findings and unsuppress the findings that have been saved locally on desktop.
Click Parasoft in the menu bar, choose Options (Visual Studio) or Preferences (Eclipse),select Import Findings and Coverage and enable the Suppressed findings from local analysis or file option (see Customizing Import Options for details).
Open the DTP Findings view, choose Configure Contents from the menu and enable the Suppressed findings option (see Customizing the Findings View for details).
C++test allows you to define suppressions directly in the source code, using the following directives embedded in C or C++ style comments:
line *, line 10, line 50-*
class MyClass, class *
file *example.cpp, file *ex*.cpp
item SECURITY-02
type SV
reason "Not relevant to my code."
line, class, file,
etc.) can be combined together by separating each entry with a space (for example, item * class MyClass line 10-*)
.<filenamewildcard>
must be specified as an absolute path to a file.Example A:/* parasoft suppress item SECURITY-02 */
This suppresses reporting of violations reported by the SECURITY-02 rule in the current file, starting from the line where the suppression is located.
Example B:/* parasoft unsuppress item * class MyClass line 10-* */
This unsuppresses all items for class MyClass in the current file starting from line 10.
Example C:/* parasoft unsuppress item SECURITY-02 file *example.
cpp */
This removes the suppression of reporting of violations reported by the SECURITY-02 rule in the current filein any file that is in the current compilation unit and has a file path that matches the *example.cpp file name pattern.
Example D:/* parasoft suppress all */
This suppresses all messages in the current file starting from the line where this directive was entered.
Example E:void foo(); /* parasoft-suppress SECURITY-02 */
void bar(); // parasoft-suppress SECURITY-03 "Not relevant to my code."
This suppresses item SECURITY-02 on the line with "foo" declaration and item SECURITY-03 on the line with "bar" declaration with the reason "Not relevant to my code."
Example F:/* parasoft off */
/* parasoft unsuppress line 30-45 */
This suppresses everything, then unsuppress lines 30 to 45.
item
is specified, the (un)suppression will be applied to all rules. This is equivalent to specifying item *
.file
is specified, the (un)suppression will be applied only to the current file.line
is specified, the (un)suppression will be applied starting from the line that contains the directive.parasoft suppress file "*file with whitespace.cpp"
file *
pattern in a header file makes it valid for all the files that include that header file. When no file is specified, suppression will be applied only to that header.parasoft-suppress
directive is quite distinct from the other parasoft on, parasoft off,
and parasoft suppress/unsuppress
directives. parasoft-suppress
suppresses only the current line (the line with the directive) and uses different syntax than the other directives.