TaiJuWu commented on code in PR #17678: URL: https://github.com/apache/kafka/pull/17678#discussion_r1828682971
########## 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: Done. PTAL. -- 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]
