I want test four UUTs in batch model in TS, a power supply will be shared for four UUTs during testing and it will be turn on at the bigginning of the sequence (let's call this step "Power on") but after step "UUT detecting" . if UUT can't be detected in any thread, the corresponding thread will be stopped and the action is jump to "End group", remaining threads continue.
Assume that I use Rendezvous function for step "Power on" and "Create rendezvous" placed in Setup and the parameter "Number of Threads per rendezvous's setting" is 4.
Problem is: If "socket 1" can't detect the UUT, that " socket 1" gose to "End group", Rendezvous on step "Power on " waiting for 4 threads but here loss one. it will wait here causing "hang up".
Questions:
--- Can I change the number of thread for rendezvous programmally before rendezvous executed?
--- Any other way to achieve my goals described above?
Thank you every one.