11-15-2012 03:09 PM
What TestStand variable should I read to determine the pass/fail status of an entire TestStand test?
I'm running the parallel model and LabVIEW can see my process' index with the "RunState.TestSockets.MyIndex" variable, but now LabVIEW needs to know whether that process has passed or failed the entire test.
Solved! Go to Solution.
11-15-2012 04:23 PM
The possible, recommended way to capture those (if not using the predefined "TS visible controls") is to capture the UIMsg_EndExecution (which is generaated automatically if the engine finishes an execution).
With this user interface message, you have access to the execution and its data, one being the property Execution.ResultStatus.
Refer to the TS help for possible values of ResultStatus. Use this to control indicators on your UI.
hope this helps,
Norbert
11-19-2012 07:55 AM
What I wound up doing was reading this property: RunState.SequenceFailed