Hi Wilmar,

if you need to create the do while loop in each call, it is more or less simple:

<nop>
 <action>
  <assign assign_to="my_i" value="0" />
 </action>
</nop>

<label id="do"/>

<nop next="done" test="result">
  <action>
   <test assign_to="result" variable="my_i" compare="greater_than" value="10" />
   <add assign_to="my_i" value="1"/>
  </action>
</nop>

... the cycle body ...

<nop next="do"/> <!-- or set this next value pointing to the label at the 
beginning of the cycle in the last executive statement of the body -->

<label id="done"/>

... continuation after the cycle ...

If you wanted something else, elaborate.

P.

Dne 26.11.2017 v 23:55 Wilmar Pérez via Sipp-users napsal(a):
Hi all,

I am trying to understand if I can create a scenario that allows me to auto-increment a doubles type variable. It would be similar to a /for /or /do... while /loop. If not, I guess I'd need to play with something external (e.g. python) to run the scenario with different values.

Thank you!

Wilmar


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org!http://sdm.link/slashdot


_______________________________________________
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to