You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2017/11/01 07:10:48 UTC

svn commit: r1813954 - in /jmeter/trunk: src/components/org/apache/jmeter/sampler/gui/TestActionGui.java xdocs/changes.xml xdocs/usermanual/component_reference.xml

Author: pmouawad
Date: Wed Nov  1 07:10:48 2017
New Revision: 1813954

URL: http://svn.apache.org/viewvc?rev=1813954&view=rev
Log:
Bug 61707 - Test Action: Target is ignored when pause is selected, so it should be disabled
Bugzilla Id: 61707

Modified:
    jmeter/trunk/src/components/org/apache/jmeter/sampler/gui/TestActionGui.java
    jmeter/trunk/xdocs/changes.xml
    jmeter/trunk/xdocs/usermanual/component_reference.xml

Modified: jmeter/trunk/src/components/org/apache/jmeter/sampler/gui/TestActionGui.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/components/org/apache/jmeter/sampler/gui/TestActionGui.java?rev=1813954&r1=1813953&r2=1813954&view=diff
==============================================================================
--- jmeter/trunk/src/components/org/apache/jmeter/sampler/gui/TestActionGui.java (original)
+++ jmeter/trunk/src/components/org/apache/jmeter/sampler/gui/TestActionGui.java Wed Nov  1 07:10:48 2017
@@ -179,7 +179,7 @@ public class TestActionGui extends Abstr
             if (pauseButton.isSelected()) {
                 action = TestAction.PAUSE;
                 durationField.setEnabled(true);
-                targetBox.setEnabled(true);
+                targetBox.setEnabled(false);
             }
         });
         stopButton = new JRadioButton(stopAction, false);

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1813954&r1=1813953&r2=1813954&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Wed Nov  1 07:10:48 2017
@@ -168,6 +168,7 @@ Summary
 <h3>Other Samplers</h3>
 <ul>
     <li><bug>61698</bug>Test Action: It stop is selected, samplers following Test Action can run</li>
+    <li><bug>61707</bug>Test Action: Target is ignored when pause is selected, so it should be disabled</li>
 </ul>
 
 <h3>Controllers</h3>

Modified: jmeter/trunk/xdocs/usermanual/component_reference.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/component_reference.xml?rev=1813954&r1=1813953&r2=1813954&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/component_reference.xml (original)
+++ jmeter/trunk/xdocs/usermanual/component_reference.xml Wed Nov  1 07:10:48 2017
@@ -1835,7 +1835,7 @@ In non-GUI mode, JMeter will exit if som
 </description>
 <properties>
   <property name="Name" required="">Descriptive name for this element that is shown in the tree.</property>
-  <property name="Target" required="Yes"><code>Current Thread</code> / <code>All Threads</code> (ignored for Pause)</property>
+  <property name="Target" required="Yes"><code>Current Thread</code> / <code>All Threads</code> (ignored for <code>Pause</code> and <code>Go to next loop iteration</code>)</property>
   <property name="Action" required="Yes"><code>Pause</code> / <code>Stop</code> / <code>Stop Now</code> / <code>Go to next loop iteration</code></property>
   <property name="Duration" required="Yes, if Pause is selected">How long to pause for (milliseconds)</property>
 </properties>