From: Josh Durgin Date: Tue, 2 Oct 2012 19:33:07 +0000 (-0700) Subject: qa: try to reproduce a race more times X-Git-Tag: v0.54~130 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9e8f69a0da243566fd400cbc17dc557a4f0a57f8;p=ceph.git qa: try to reproduce a race more times This was failing occassionally in the nightly runs. Signed-off-by: Josh Durgin --- diff --git a/qa/workunits/rbd/watch_correct_version.sh b/qa/workunits/rbd/watch_correct_version.sh index 1d9c3fda866e..138fb2d918e1 100755 --- a/qa/workunits/rbd/watch_correct_version.sh +++ b/qa/workunits/rbd/watch_correct_version.sh @@ -1,7 +1,7 @@ #!/bin/bash -ex resize_image() { - for i in $(seq 1 100) + for i in $(seq 1 1000) do rbd resize --size $i test done @@ -12,7 +12,7 @@ rbd rm test || true rbd create -s 1 --order 25 test resize_image & -for i in $(seq 1 100) +for i in $(seq 1 1000) do rbd export test test.exported --debug-rbd 20 2>export.log rm -f test.exported