This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/jenkmarking-multinode in repository toolchain/abe.
commit ea9f4f05ed1b759850beb89126b4ce9fc10ae70a Author: Bernard Ogden bernie.ogden@linaro.org Date: Tue Jul 28 10:42:57 2015 +0200
Fix code to pause between pings
Change-Id: If1cdb95edce57f36f9f662d7e256cec00f22cfab --- scripts/runbenchmark.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/scripts/runbenchmark.sh b/scripts/runbenchmark.sh index 9f3abd0..28dae92 100755 --- a/scripts/runbenchmark.sh +++ b/scripts/runbenchmark.sh @@ -168,9 +168,10 @@ fi ret=\$?; \ echo \${ret} > ${target_dir}/RETCODE && \ while true; do \ - if ping -i 11 -c 1 ${host_ip}; then \ + if ping -c 1 ${host_ip}; then \ break; \ fi \ + sleep 11; \ done; \ exit \${ret}" \ "${target_dir}/stdout" "${target_dir}/stderr" \