Re: How to make a test stop at a certain point?

2008-05-09 Thread sebb
On 09/05/2008, Steve Kapinos <[EMAIL PROTECTED]> wrote: > > Testing Threadgroup (users = 100) > > + work > > + work > > + testaction and in comment use ${__setProperty($stopcounter, > > ${__jexl(${stopcounter}+1)} > > >That may not be thread-safe - updates may be lost if two threads run >

RE: How to make a test stop at a certain point?

2008-05-09 Thread Steve Kapinos
> Testing Threadgroup (users = 100) > + work > + work > + testaction and in comment use ${__setProperty($stopcounter, > ${__jexl(${stopcounter}+1)} >That may not be thread-safe - updates may be lost if two threads run the test >action at about the same time. >The Jexl execute() method is s

Re: How to make a test stop at a certain point?

2008-05-08 Thread sebb
On 08/05/2008, Steve Kapinos <[EMAIL PROTECTED]> wrote: > So you'll need the work-round below anyway (which does work for me). > > > However you can use the following instead: > > > > + Java Request (set Status != OK) > > + + Synch timer > > + + Result Status Action Handler (Stop Test) > >

RE: How to make a test stop at a certain point?

2008-05-08 Thread Steve Kapinos
So you'll need the work-round below anyway (which does work for me). > However you can use the following instead: > > + Java Request (set Status != OK) > + + Synch timer > + + Result Status Action Handler (Stop Test) I made a simple test plan to test how it would work like this Threadgroup (

Re: How to make a test stop at a certain point?

2008-05-07 Thread sebb
2008/5/7 sebb <[EMAIL PROTECTED]>: > 2008/5/7 sebb <[EMAIL PROTECTED]>: > > > > 2008/5/7 Steve Kapinos <[EMAIL PROTECTED]>: > > > > > The overall goal is to have a monitoring thread running in paralell to a > > > second thread that is running tests. The second thread will > continually > >

Re: How to make a test stop at a certain point?

2008-05-07 Thread sebb
2008/5/7 sebb <[EMAIL PROTECTED]>: > 2008/5/7 Steve Kapinos <[EMAIL PROTECTED]>: > > > The overall goal is to have a monitoring thread running in paralell to a > > second thread that is running tests. The second thread will continually > > be looping running tests and recording (and hopefully

Re: How to make a test stop at a certain point?

2008-05-07 Thread sebb
2008/5/7 Steve Kapinos <[EMAIL PROTECTED]>: > The overall goal is to have a monitoring thread running in paralell to a > second thread that is running tests. The second thread will continually > be looping running tests and recording (and hopefully adding assertions) > to the response. The fir