06-12-2024 07:45 AM
Hello,
currentlyl i have a testplan with 50 sockets.
In the mainsequence i have:
Batch Synchronisation Enter "Serial"
call 01
call 02
Batch Synchronisation Exit "Serial"
Now all 50 sockets are tested one after another. This runs fine,
As next i want to change the testplan to test 100 sockets in total but always two of them should execute in parallel.
So something like this (which is not working like this):
if (socket > 0) && (socket <50)
Batch Synchronisation Enter "Serial1"
call 01
call 02
Batch Synchronisation Exit "Serial1"
endif
if (socket > 51) && (socket <100)
Batch Synchronisation Enter "Serial2"
call 01
call 02
Batch Synchronisation Exit "Serial2"
endif
Question:
How can i change "Enter "Serial" into something like "Enter two sockets serial" so that the sequence is testing
0 and 1 in parallel,
2 and 3 in parallel,
4 and 5 in parallel,
...
Thx
06-12-2024 03:29 PM
You need to use batch synchronization to test in batches of 2 sites.
06-13-2024 06:53 AM
I am using the BatchModel.
Can you create an example of what you mean?
In my first testing i am using the batch synchronisation.
Thank you
06-20-2024 06:07 AM
Hello santo_13,
what do you mean with "test in batches of 2 sites." ?
Thanks