Testing and Analysis

How can I disable C/C++test code instrumentation for functions containing OpenMP instructions?

Add the following option to the cpptestcc command line:

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

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

Add the following option to the cpptestcc command line:

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

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

Add the following option to the cpptestcc command line:

-xharness-option="—-ignore-functions-with-ivdep=true"
  • No labels