NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Own Result Reports each loops

Hi !

I have "Main Sequense" and there is "Sub sequense", i loop this sub seq several times(depending user).
How i get each loop own result report ?

I tried "Run sequense on a new execution", "Single Pass" but then it only gives own reports
only Main and Sub sequenses and still every Sub seq several loop results is in same html report
file.

I want espesially sub sequense each loop results in own reports !
How i do it ?

-HeVi-
0 Kudos
Message 1 of 3
(3,009 Views)
If I understand your question correctly, you want different HTML files for each loop? This would involve changing the way that the process model handles reports, which is a very difficult task that I would not attempt to do. Why not use the one HTML report that has all the loops reports in it? You could also create your own reports by writing to a file in each one of your steps. This could be built into your labview code.
- tbob

Inventor of the WORM Global
0 Kudos
Message 2 of 3
(3,009 Views)
Keep in mind that the report object is generated for each execution. Whenever you are creating a new execution, it is now completely independent of the previous sequence. It has its own report object as well. The main sequence no longer waits on this execution to finish. The report options determine how the name is generated for each file. You can change this to force a unique file name to be generated, but I still believe this is not going to behave in the way that you wish.

The only real way to keep the functionality of one test and have multiple reports is to modify the process model so that it either parses the data generated by the report generation steps and creates new files, or change the way the reports are generated through the process model. Both of th
ese tasks are not trivial and would require a bit of work.

Hope this helps!

Allen P.
Applications Engineer
National Instruments
0 Kudos
Message 3 of 3
(3,009 Views)