Versions Compared

Key

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

...

  1. Create an advanced settings file that includes C/C++test's advanced scope settings. See Advanced Scope Settings for a complete list of available settings. The contents of the advanced settings file may resemble the following:

    Code Block
    // This configuration narrows down the scope of analysis to locally modified files
    // (including header files).
    scope.scontolscontrol.files.filter.mode=local
    cpptest.scope.adjuster.cu.enabled=true
    Code Block
    // This configuration narrows down the scope of analysis to files (including header files)
    // on the current working branch that differ from the main stream of development:
    scope.scontolscontrol.files.filter.mode=branch
    cpptest.scope.adjuster.cu.enabled=true
    Code Block
    // This configuration narrows down the scope of analysis to files (including header files)
    // on the current working branch that differ from branch "feature_372":
    scope.scontolscontrol.files.filter.mode=branch
    scope.scontrol.ref.branch=feature_372
    cpptest.scope.adjuster.cu.enabled=true
  2. Specify the path to the advanced settings. See Configuring an Advanced Settings File for details.

...