...
Use the -help
command line switch:
Code Block |
---|
cpptestcli.exe -help |
Why do I get notified that Parasoft DTP Plugin is slowing Visual Studio 2017?
...
How can I work with C/C++test via proxy?
Typically, if you connect through a proxy server, you need to configure the connection by passing protocol-specific system properties to the
...
JVM – using the -D
command line option.
To work with Cwith C/C++test, ensure ensure that the system properties for the HTTPS protocol (are configured. At a minimum, you must configure https.proxySet=true
, https.proxyHost=[hostname]
, and https.proxyPort=[port number]
. If your proxy server requires authentication, you can configure your credentials with the https.proxyUser
and https.proxyPassword
properties.
) are configured. Your command line may resemble the following:
Code Block | ||
---|---|---|
| ||
java -Dhttps.proxySet=true -Dhttps.proxyHost=myserver.example.com -Dhttps.proxyPort=8080 -Dhttps.proxyUser=user1 -Dhttps.proxyPassword=MyPassword |
In addition, you can configure the https.nonProxyHosts
property to specify hosts where connection via proxy is not required.
If you use C/C++test on desktop with Eclipse, the proxy settings are automatically detected and do not need to be configured in the command line.
The The proxy mode is not supported for Visual Studio.
Why are suppressions of some rules no longer available on DTP after C/C++test was upgraded to a newer version?
Anchor | ||||
---|---|---|---|---|
|
Suppressions associated with rules whose messages changed between releases may not be available on DTP and the rules must be re-suppressed.
You can restore legacy messages for BD category rules in version 10.4.1 and later by configuring the following settings in your .properties file:
flowanalysis.legacy.messages.for.<rule_ID>=true
.
For example:
flowanalysis.legacy.messages.for.BD.PB.ARRAY=true
flowanalysis.legacy.messages.for.BD.PB.ZERO=true
To successfully restore the legacy messages, ensure that you remove the .cpptest folder that contains the local C/C++test cache data from the workspace (the custom workspace or the workspace you configured with the -workspace
command line switch).