...
How can I work with C/C++test via proxy?
Typically, if you To 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.in the parasoft.properties file located in <INSTALL_DIR>/plugins/com.parasoft.ptest.runtime.vstudio.core
For example, if you are using the HTTPS protocol, ensure To work with C/C++test, 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.
Your command line may resemble the following:
Code Block | ||
---|---|---|
| ||
java -Dhttpshttps.proxySet=true -Dhttps https.proxyHost=myserverproxy.exampleparasoft.com -Dhttps.pl https.proxyPort=8080 -Dhttps3128 https.proxyUser=user1 -Dhttps.proxyPassword=MyPasswordusername https.proxyPass=password |
In addition, you can configure the https.nonProxyHosts
property to specify hosts where connection via proxy is not required.
The proxy mode is not supported for Visual Studio.
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.
If I’m having problems, what information should I send to the C/C++test support team?
...
- Configure IntelliSense to stop reporting potential syntax errors. Note that this will globally disable error recognition–in test suites and in all other files.
Wrap the code in your test suite (s) with the following directives:
Code Block #ifndef __INTELLISENSE__ //this code block will not be analyzed by IntelliSense #endif
Scroll Pagebreak |
---|