chia7712 commented on code in PR #17678:
URL: https://github.com/apache/kafka/pull/17678#discussion_r1828362659


##########
README.md:
##########
@@ -47,6 +47,9 @@ Follow instructions in https://kafka.apache.org/quickstart
 ### Repeatedly running a particular unit/integration test ###
     I=0; while ./gradlew clients:test --tests RequestResponseTest --rerun 
--fail-fast; do (( I=$I+1 )); echo "Completed run: $I"; sleep 1; done
 
+### Repeatedly running a particular unit/integration test with specific times 
by setting N ###
+    N=10; I=0; while [ $I -lt $N ] && ./gradlew clients:test --tests 
RequestResponseTest --rerun --fail-fast; do (( I=I+1 )); echo "Completed run: 
$I"; sleep 1; done

Review Comment:
   Could you please merge this one into lin#48? maybe we can set a large N by 
default?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to