Questions tagged [rational-purify]
9 questions
4
votes
1 answer
Rational PurifyPlus: where to buy? Any experience with alternatives?
I have been looking on the webs for a possibility to purchase Rational PurifyPlus for Windows.
In our company, we have been using Purify in the past and want to replace it with licenses for the current version because we need to support Windows…

DrGlitch
- 136
- 11
3
votes
0 answers
How to integrate Purify into Hudson CI?
I have a Hudson CI system set up and for the moment it is used for building a project and running some unit tests. My next step is to integrate the memory leak detector Purify into the build cycle.
Now I want to start the unit tests also inside…

Martin
- 968
- 3
- 10
- 19
2
votes
1 answer
How to exclude shared library from instrumentalization with purify?
Instrumentalizing C Code that is linked against Oracle's libclntsh leads to crashes when running the resulting program. The program is terminated with a 'Illegal Instruction' signal.
The bug is present for at least some versions of Oracle 11g and…

maxschlepzig
- 35,645
- 14
- 145
- 182
1
vote
1 answer
Purify: Error: Ran out of thread local data space in purify
I am running purify 7.0 on Hp-UX 11.11B with aCC 3.85.I set the environt variable as below:
export PURIFYOPTIONS="-max_threads=4000 -enable-thread-stack-change=yes"
But still I am getting the below error and the purify comes to an halt with the…

Smruti Rout
- 11
- 2
0
votes
1 answer
Is there an automated way to convert files from .pv to .log?
Is there a way to convert a .pv file to a text file apart from opening each one with purify -view and then exporting it?
I have lots of .pv generated files from running lots of tests with my executable instrumented with Rational's Purify. I know…
0
votes
0 answers
why purify tool shows an IPR error on the "throw true" statement?
while doing an memory checkup with purifier, it is showing an IPR error on the following statement.
throw true;
What could be the issue?
void Myfunc(char *p_trace_id,char *p_session_id,int &p_roam_flag)
{
try
{
int set_id=0;
…

VINOTH ENERGETIC
- 1,775
- 4
- 23
- 38
0
votes
1 answer
Code coverage of a daemon in Windows
I need to do code coverage on a daemon. The daemon application is written in c++. We test the daemon features with a client test program that has its own libraries. The libraries communicate with the daemon.
I use IBM Rational PureCoverage usually.…

kk.
- 667
- 1
- 15
- 33
0
votes
1 answer
How to interface Purify into Scons?
I have a Makefile that has various calls to scons.
scons "--jobs=8" -f SConstruct
The SCons command generates a line similar to the following:
g++ -o buildversion.o -c -c -g -fPIC buildversion.cc
How do you interface Purify into this mix? I'm…

user2569618
- 517
- 3
- 16
- 42
0
votes
1 answer
Rational Purify not showing memory leak, run-time errors?
This might not appear like a programming question, but inherently deals with code.
I have a following piece of test-code, which has obvious errors like array index out of bounds, memory leak:-
#include "stdio.h"
#include "stdlib.h"
main()
{
int…

goldenmean
- 18,376
- 54
- 154
- 211