2011/9/23 Stéphane Hoblingre <[email protected]>: > One update: > The shutdown command is not working if I invoke it before all the thread are > started. > eg. If I start 20 thread and call it before the 20 are started, it fails. If > I call it once the 20 thread are started, it works. > The 'Stop' command works in both cases.
The Shutdown command just sets a flag to tell the threads to stop; the Stop command actually interrupts the threads. Probably the flag is not being checked at startup. > Regards, > > Stef > > 2011/9/23 Stéphane Hoblingre <[email protected]> > >> Hi, >> >> If I try to stop a running test using "Shutdown", it never stops (even if >> thread count is reduced till 0) and the windows stays open. I have to close >> it and call stop to have the top left green box back to gray. Can someone >> confirm this? >> JMeter 2.5.1 r1174406, win xp sp3 32bits, jdk 1.6. >> >> Regards, >> >> Stef >> >> >> On Fri, Sep 23, 2011 at 4:37 AM, Peter Lin <[email protected]> wrote: >> >>> +1 >>> >>> On Thu, Sep 22, 2011 at 6:53 PM, Milamber <[email protected]> wrote: >>> > Hello, >>> > >>> > The first release candidate for JMeter 2.5.1 has been prepared, and your >>> > votes are solicited. >>> > >>> > This release fixes mainly some bugs appeared since JMeter 2.5, but >>> > contains few improvements. >>> > >>> > Tests (load tests or functional tests) with JVM 5/6/7 on >>> > Linux/Windows/Mac OS on functionality changes are welcomes (HttpClient >>> > 4.1 request, Http request with parallels embedded resources, View >>> > results tree, WebServices (SOAP) request, etc) >>> > List of changes: >>> > http://people.apache.org/~milamber/jmeter-2.5.1RC1/docs/changes.html >>> > >>> > >>> > JMeter is a Java desktop application designed to load test functional >>> > behavior and measure performance. The current version is targeted at >>> > Java 1.5+. >>> > >>> > Archives/hashes/sigs and RAT report: >>> > >>> > http://people.apache.org/~milamber/jmeter-2.5.1RC1/dist >>> > >>> > MD5 hashes of archives for this vote: >>> > >>> > c1c63f36692ac2fd2e7cca2f2b162c6e *jakarta-jmeter-2.5.1.tgz >>> > 8345f36f769872651d53db2436eac100 *jakarta-jmeter-2.5.1.zip >>> > c232ea7259543592f56c2dca7ba5850d *jakarta-jmeter-2.5.1_src.tgz >>> > 52a2dee578fd433d286e16dfe928b6b2 *jakarta-jmeter-2.5.1_src.zip >>> > >>> > Site Docs are here: >>> > http://people.apache.org/~milamber/jmeter-2.5.1RC1/docs >>> > >>> > Tag: >>> > http://svn.apache.org/repos/asf/jakarta/jmeter/tags/v2_5_1_RC1(r1174408) >>> > >>> > Keys are here: >>> > http://svn.apache.org/repos/asf/jakarta/site/dist/jmeter/ >>> > also >>> > http://people.apache.org/~milamber/ >>> > >>> > N.B. >>> > To download the dependencies: "ant download_jars" >>> > >>> > To create the jars and test JMeter: "ant package test". >>> > >>> > JMeter 2.5 requires Java 1.5 or later. >>> > >>> > Note that there is a bug in Java on some Linux systems that manifests >>> > itself as the following error when running the test cases or JMeter >>> itself: >>> > >>> > [java] WARNING: Couldn't flush user prefs: >>> > java.util.prefs.BackingStoreException: >>> > java.lang.IllegalArgumentException: Not supported: indent-number >>> > >>> > This does not affect JMeter operation. >>> > >>> > >>> > All feedback (and votes!) welcome. >>> > >>> > [ ] +1 I support this release >>> > [ ] +0 I am OK with this release >>> > [ ] -0 OK, but.... >>> > [ ] -1 I do not support this release (please indicate why) >>> > >>> > The vote will remain open for at least 72 hours. >>> > >>> > Note: If the vote passes, the intention is to release the archive files >>> > and rename the RC tag as the release tag. >>> > >>> > Thanks in advance! >>> > >>> > Milamber >>> > >>> > >>> > >>> > >>> > >>> > --------------------------------------------------------------------- >>> > To unsubscribe, e-mail: [email protected] >>> > For additional commands, e-mail: [email protected] >>> > >>> > >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >> > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
