04-24-2020 09:08 AM
The attached document describes how a particular line of code, see below, no longer works in TestStand 2019. The attachment also describes how it was used.
RunState.Caller.Locals.ResultList += Locals.ResultList
Any help would be appreciated.
Thanks
04-24-2020 04:14 PM
Hi cct3,
Can you post a sequence File that shows the problem?
Regards,
Anand Jain
National Instruments
04-30-2020 07:54 AM
Attached is a sequence file that I got from this forum a couple of years ago and worked fine until updating from Test Stand 2017 to TestStand 2019-32bit. The attached sequence file shows the problem in SequenceFilePostStepFailure, Cleanup. I did observe that by changing the problem line of code
from
#NoValidation(RunState.Caller.Locals.ResultList) += Locals.ResultList
to
#NoValidation(RunState.Caller.Locals.ResultList += Locals.ResultList)
It now seems to work again.