TestStand API to Monitor Sequence File Status

Updated Jun 7, 2023

Environment

Software

  • TestStand

May I know how can I monitor my current sequence file's status? I would like to perform post processing with If statement depending on the current status of the sequence file after it has completed a series of steps.

You can use the following variable to monitor current sequence file status
ThisContext.RunState.Main.SequenceFailed
This variable will return boolean true once a fail occurred in the sequence file and return false if all steps pass.