NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

I want my Test Sockets will run in loop

I want my Test Sockets will run in loop. I use BatchModel, sequential batch mode.
Now it works so:
 
process setup
main sequence of Socket 1...
main sequence of Socket 2...
....
main sequence of Socket N...
process cleanup
 
I want to do so:
 
process setup
 
loop 1
main sequence of Socket 1...
main sequence of Socket 2...
....
main sequence of Socket N...
 
loop 2
main sequence of Socket 1...
main sequence of Socket 2...
....
main sequence of Socket N...
 
loop N
main sequence of Socket 1...
main sequence of Socket 2...
....
main sequence of Socket N...
 
process cleanup
 
How can I do it ?
 
0 Kudos
Message 1 of 3
(2,957 Views)
Marta,
 
Try using the PreUUTLoop and PostUUTLoop callbacks instead of ProcessSetup and ProcessCleanup.
 
Allen P.
NI
0 Kudos
Message 2 of 3
(2,948 Views)
Hi, Allen, thank you for your reply.
Now I want skip Batch dialog (UUTs dialog) and define myself number of Batch loops.
How I can to do it ?
0 Kudos
Message 3 of 3
(2,936 Views)