03-21-2024 10:17 PM
Hi,
Does Anyone knows
How to Use PreUUT to Get the Mainsequence ResultList status value??
Regards
03-22-2024 03:56 AM
Hi,
The PreUUT runs before main sequence call back. I don't think you can get Main sequence result in PreUUT callback.
Maybe you can check in PostUUT call back using sequence context.
03-22-2024 09:56 AM
If you are using the default Sequential model for TestStand, in PostUUT you can access the client sequence file's results using this expression:
RunState.Root.Locals.ResultList[0].TS.SequenceCall.ResultList
In PreUUT you can only access the Root result list, which is empty because model has not yet executed the Sequence Call step to call the client sequence file.