Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
-xharness-option="—-ignore-functions-with-openmp=true"

Anchor
disable instrumentation for pragma loop1
disable instrumentation for pragma loop1
How can I disable C/C++test code instrumentation for functions containing '#pragma loop' directives?

Add the following entry to Project Settings > Parasoft > C/C++test > Other Settings > Advanced options:
xharness.ignoreFunctionsWithClangLoop true

When using the cpptestcc utility for collecting code coverage, add the following option to the cpptestcc command line:

Code Block
-xharness-option="—-ignore-functions-with-clang-loop=true"

Anchor
disable instrumentation for pragma GCC ivdep1
disable instrumentation for pragma GCC ivdep1
How can I disable C/C++test code instrumentation for functions containing '#pragma GCC ivdep' directives?

Add the following entry to Project Settings > Parasoft > C/C++test > Other Settings > Advanced options:
xharness.ignoreFunctionsWithIvdep true

When using the cpptestcc utility for collecting code coverage, add the following option to the cpptestcc command line:

Code Block
-xharness-option="—-ignore-functions-with-ivdep=true"

Reports

How can I create a report with a list of active coding standard rules?

...