From: Richard Jones Date: Wed, 13 May 2009 14:55:26 +0000 (+0100) Subject: Allow number of loops to be set on command line. X-Git-Tag: 1.0.26~14 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=5b17af107f75a0d6f3a39b88b9c18714014eb7af Allow number of loops to be set on command line. --- diff --git a/test-bootbootboot.sh b/test-bootbootboot.sh index 8ee7493..616781a 100755 --- a/test-bootbootboot.sh +++ b/test-bootbootboot.sh @@ -24,9 +24,10 @@ set -e rm -f test1.img -dd if=/dev/zero of=test1.img bs=1024k count=1024 +dd if=/dev/zero of=test1.img bs=1024k count=500 n=20 +if [ -n "$1" ]; then n=$1; fi export LIBGUESTFS_DEBUG=1