03-16-2012 02:02 PM
I am using TestStand 4.2 and I am using a long sequence with several sub-sequences. In these subsequences I am getting test results that I would like to place in the TestStand report. Currently, in order to do this I have to check the "Record Result" option in the "Run Options" of the sequence call properties which displays an "Entering sequence call" mark on the report. Is there any way that I can get rid of this marker and still record information from the sub sequence?
Solved! Go to Solution.
03-16-2012 04:09 PM - edited 03-16-2012 04:13 PM
Results are stored in the resultlist then the resultlist is parsed as a string in the process model, you can delete the subsequenceCall from that string, you just have to add a step before logging the results to file in the associated process model callback (use the search and replace function available in a statement step type).
03-16-2012 04:42 PM
Can you explain a little more?
03-19-2012 10:49 AM
Is this in the SequentialModel process model?
03-19-2012 10:58 AM
Yes, I was indeed refering to the Sequential Process Model
03-19-2012 11:02 AM
I am in the process model currently, but I am not able to find the point which you are referring to.
03-19-2012 11:03 AM
The processModel calls subsequences you have to look into it
03-19-2012 11:39 AM
But which callback goes to callbacks of "sequence calls"?
03-19-2012 11:45 AM
Hello,
You should have a look a these documents:
http://digital.ni.com/manuals.nsf/websearch/2B14FB1CD4FF25CA862577AE00554FC7
http://zone.ni.com/devzone/cda/tut/p/id/7958
Regards,
03-19-2012 12:26 PM
I believe I understand better now. I should go to the "edit->sequence file callbacks". I am confused as to which callback to effect.