NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Saving TestStand Report without termination

I'm trying to figure out how to stop teststand from saving my report if i terminate the sequence. I only want it to save the report if the test failed or passed but not terminated. I'm using LabVIEW 7.0 and TestStand 3.0 Thanks -Andy
0 Kudos
Message 1 of 2
(2,881 Views)
Hi arj,

In the process model and in the Sequence Test UUt's is a step called 'Handle Termination'.
If you move this up so that it's the next step after PostUUT callback. This will allow you to terminate without saving results. Unfortunately you will find that an empty file will already exist. To resolve this,
move the steps Determine Report File Path and Clear Report to performed after the 'Handle Termination'.

If you want the same thing in the Single Pass sequence, then you need could put a Post Action on the MainSequence step using the Specify Custom Condition with the expression Step.Result.Status == "Terminated", if this is True terminate Execution.

Hope this helps.
Ray Farmer
Regards
Ray Farmer
Message 2 of 2
(2,881 Views)