I am modifing the lauterbach script. I need to check if the breakpoint is hitting correctly on the same breakpoint which I wanted to hit.
Task_func has a runanble Runnable_Func
I used this piece;
IF STRing.ComPare(sYmbol.FUNCTION(PP()),"*\Runnable_Func")
PRINT "NICEWORK"
ELSE
PRINT "BADCODE"
But in this case I am getting the true value for the owned function(Task_Func in this case).
Can I check the same way breakpoint for the runnables I need the true condition for Runnable_Func. Another try which I did is
&pc=r(pc)
&call=address.offset(Task_NoAr_Schd_50msfunc\10)
IF (&pc==&call)
is any other options anyone aware?
Cheers, Nilesh