This topic explains how to review and customize project-level and file-level options, including build settings, custom compiler and linker options, and other settings.
Sections include:
The appropriate build settings must be configured in order for C/C++test to properly test your code. Additionally, Advanced Settings (instrumentation options) can be configured as needed.
To review and modify settings:
Right-click the C/C++ Projects tree (a.k.a. "the project tree") node for the project or file whose settings you want to review and modify, then chooseProperties from the shortcut menu. The Properties dialog will open.
Options source: Determines how options are set. Options can be set manually, or based on build system options, build data file options, Green Hills project options, or Eclipse Managed Make project settings.
Use options from a build data file is recommended if you used cpptestscan
to create a build data file, as described inCreating a Project Using an Existing Build System, and if you prefer to manually manage regeneration and update the build data file.
Use options from GHS project is recommended for projects that were originally developed in Green Hills IDEs.
Use options from the project is recommended for Managed Make projects that were originally developed in Eclipse.
Specify all options manually is recommended otherwise.
The available controls depend on the Options source selected.
Build system complexity and time required to perform a full project rebuild determine which options source is appropriate. If Use options from a build system is enabled:
If Use options from a build data file is enabled:
|
If you decide to manually manage a build data file, integrating the mechanism for creating build data files into your build process is highly recommended. This is so that members of the development team can access and use your build data file, as well as helps you seamlessly generate or update it during regular build activities. |
In C++test 7.1 and above, Use options from Makefile-based project was replaced by Use options from a build system. To achieve the same functionality as that provided by Use options from Makefile-based project, use the following settings
|
Multiple C/C++test Project Configurations can be used to manage tests for a range of different configurations. For example, you can configure a project for testing a host-compiler, cross-compiler, testing in Debug mode, testing in Release mode, etc.
You can also export current active properties to a file or import previously saved properties from a file:
Exporting a properties creates a file that's can also be used as an argument in the cpptestcli -settings
parameter. This allows you to easily switch between different project configurations when testing from the command line.
To configure the appropriate settings:
${resource_loc}
resolves to the path to the specific project resource. For instance, ${resource_loc:/MyProject/linked_src_dir/source.cpp}
will be resolved into C:\src\source.cpp
.When the options in the specified build data file change, C/C++test will automatically rescan the options and modify the project accordingly. If you want to force C/C++test to update options immediately (for example, if an external configuration file has changed), click the Reset cache button.
To configure the appropriate settings:
${CPPTEST_SCAN}
variable.Here is a sample GNU build command line:make -i -B objects CXX=${CPPTEST_SCAN} CC=${CPPTEST_SCAN}
This command line will build the objects
make target with the flags -B
(make all targets unconditionally) and -i
(ignore errors). The CXX
and CC
make variables will be substituted with ${CPPTEST_SCAN}
. This command line will allow C/C++test to extract options for all source files that are normally compiled to build the objects
target.
CXX=\${CPPTEST_SCAN}
The build command line is preset to include the -B switch option (unconditionally make all targets). Only GNU Make 3.80+ supports this option. If you are using an earlier make, clean the build before creating a project. Keep the -k switch. If you are using a make that does not support -B, further modification of the command line is required. The default build command line used in the project properties does not have any targets. We recommend that you modify this command line with the target(s) used to build the code you want analyzed For example:
Also, add a clean step prior to the normal build target. For example:
This would first make the clean target, then |
3. In the Build working directory field, specify the directory in which the build process should execute.
${project_loc}
resolves to the absolute path to the Eclipse project location (the location that contains the .project
file). Do not use this variable if your project has "linked" source folders—source files that do not actually live within your project location—see the info box below for details.
${resource_loc}
resolves to the path to the specific project resource. For instance, ${resource_loc:/MyProject/linked_src_dir/source.cpp}
will be resolved into C:\src\source.cpp
.
When configuring a Makefile-based project with a linked source folder, you cannot use To properly configure the project—without using an absolute path to the source directory on your local system (this would not be portable across the team)—use For example, assume that you are working on the ATM_makefile project, which contains a linked ATM folder that points to the source location. The actual project is stored in a different physical location (because you want to separate project setup files from the actual source). To configure C/C++test to locate the make run directory and any files referenced in relation to that, use |
4. In the Dependency file(s) field, specify the Makefile(s) to be checked for changes. Options will be automatically updated if the specified file(s) changes.
Using an absolute path could result in a non-portable project. We recommend that you use the following C/C++test variables to specify the path:
${project_loc}
resolves to the path to the Eclipseproject location (the location that contains the .project
file). Do not use this variable if your project has "linked" source folders—source files that do not actually live within your project location—see the info box below for details.
${resource_loc}
resolves to the path to the specific project resource. For instance, ${resource_loc:/MyProject/linked_src_dir/source.cpp}
will be resolved into C:\src\source.cpp.
5. In the Compiler settings area, specify the compiler executable (for C and C++ sources), linker, and family. If your compiler is not listed, add a custom compiler definition for it (as described in Configuring Testing with the Cross Compiler).
6. In the Options area, specify any test-specific C/C++test-specific options compiler or linker options that you want to use, and that are not already specified in the Makefile. See Specifying Custom Compiler Settings and Linker Options for details.
When the options in the specified dependency file(s) change, C/C++test will automatically rescan the options and modify the project accordingly. If you want to force C/C++test to update options immediately (for example, if an external configuration file has changed), click the Reset cache button.
To configure the appropriate settings:
*.gpj
) project file where you want to start options scanning.${project_loc}
resolves to the path to the Eclipse project location (the location that contains the .project
file). Do not use this variable if your project has "linked" source folders—source files that do not actually live within your project location—see the info box above for details.${resource_loc}
resolves to the path to the specific project resource. For instance, ${resource_loc:/MyProject/linked_src_dir/source.cpp}
will be resolved into C:\src\source.cpp
.When GHS project options change, C++test will automatically rescan the options. If you want to force C/C++test to update options immediately (for example, if an external configuration file has changed), click the Reset cache button.
Additional Details on How C/C++test Uses a GHS Options Source
C/C++test supports following kinds of GPJ projects, meaning that it treats project nodes designated with these project types as projects to scan for sources and build options:
C/C++test divides GPJ projects into two groups:
The root project is the top-level project file selected as the one from which options scanning starts.
For projects of complex structure:
Testable sources are C and C++ sources.
There are two kinds of build options introduced by GPJ projects:
For C/C++test, build options (compilation options and build properties) for a specific source file include all options collected over all parent project nodes leading to this source, together with all options of the source node itself. Moreover, linking options for a specific testable project include all options collected over all parent project nodes leading to this project, together with all options of the testable project node itself.
The following are recognized build properties, which may be specified from MULTI Build Options Editor:
For backwards compatibility with the GHS support available in previous C/C++test versions, the current version of C/C++test has a compatibility mode where the root project is always treated as testable, regardless of its type (as long as its type is supported). However, it may not be possible to build a test executable from a "not testable" project; two common reasons for this are:
The compatibility mode is primarily used for running static analysis on all the testable sources found in the complete project's hierarchy.
To configure the appropriate settings:
To configure the appropriate settings:
${project_loc}
resolves to the path to the Eclipse project location (the location that contains the .project
file). Do not use this variable if your project has "linked" source folders—source files that do not actually live within your project location—see the info box above for details.${resource_loc}
resolves to the path to the specific project resource. For instance, ${resource_loc:/MyProject/linked_src_dir/source.cpp}
will be resolved into C:\src\source.cpp
.Determines whether the selected source file is instrumented during test case execution.
In order to apply this setting to multiple files, select files in the project tree, then right-click the selection and choose Parasoft> C/C++test> Execution Settings. Note that the current setting will be applied uniformly to all selected files.
The C/C++test temporary files field controls where C/C++test keeps temporary data/files, such as instrumented sources, compiled objects, linked test executables, and automatically-generated header files. This setting controls {cpptest:testware_loc}
.
Since C/C++test can automatically re-generate these files as needed, they do not need to be shared across team members. Thus, these files should not be saved within the project or added to source control.
The temporary data can be deleted by clicking the Clear button. We recommend that you do not delete the temporary data between test runs; keeping this data can significantly improve performance.
For optimal performance, use a location on the local hard drive.
This table allows you to specify various low-level and debug options; for a list of available options, see Advanced Instrumentation Configuration Options.
Determines if multibyte encoding should be used when processing source files. By default, C/C++test automatically activates support for multibyte characters based on the current system encoding (Auto mode). In order to manually control multibyte support, set the option value to On or Off.
Note that performance may be impacted by analyzing code with support for multibyte characters enabled.
Allows you to specify project files that you do not want tested. See Testing a User-Defined Set of Resources for details.