Tagged Questions
The parasoft tag has no wiki summary.
8
votes
2answers
257 views
Confusing control flow analysis from Parasoft C++test
We use Parasoft C++test to statically analyze our code. It's having trouble with code like the following:
void foo(int* x) {
try {
bar();
} catch(...) {
delete x;
...
4
votes
3answers
139 views
How to mark a function as non-returning in Parasoft C++test?
We have a die function that outputs an error message and exits, e.g.:
void die(const char* msg) {
fprintf(stderr, "Error: %s\n", msg);
exit(1);
}
We use Parasoft C++test to statically ...
2
votes
2answers
128 views
Generating tests from run-time analysis
We have a large body of legacy code, several portions of which are scheduled for refactoring or replacement. We wish to optimise parts that currently impact on the user-experience, facilitate reuse in ...
1
vote
3answers
147 views
does anyone have parasoft .test or jtest experience
First i have no experience on parasoft .test or jtest experience. I have read the datasheet that the product could automatically generate unit test.
but I am woundering how useful the auto generated ...
1
vote
2answers
392 views
parasoft C++ unit test question
I work on a project that was just told we had to incorporate Parasoft C++ unit testing tool into any code changes going forward. The problem I face is that we have methods with very small changes and ...
0
votes
2answers
41 views
Quality Error passing sizeof casted return
I am using a code quality tool called Parasoft C++ Test. It is complaining about the following:
setsockopt(...,sizeof(int));
It states:
In 'setsockopt' function call, do not pass long casted ...
0
votes
1answer
65 views
Parasoft rulewizard
I'm trying to create a static rule to check the token passing for defensive programming in a SIL4 application.
The rule is the following: "Each functions shall have a const uint_32 as last parameter"
...
0
votes
0answers
67 views
Parasoft test for different compiler
We have project in VS2003 (Make file based).
We want to perform static analysis on our project using Parasoft c++test.
Our compiler is CHC12.exe and it seems that Parasoft does not support this ...
0
votes
0answers
39 views
Rest service parameterisation in parsoft
Hi
I am working on a POC on parasoft SOA testing that requires me to automate the rest service from a csv or excel file.
In the first rest client there is a get operation that gets the details in the ...