Minor fix to benchmark running script.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 10 Feb 2011 18:40:47 +0000 (10:40 -0800)
committerMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 10 Feb 2011 18:40:47 +0000 (10:40 -0800)
microbench/setup/run-benchmark

index 4b590e3..73cb99e 100755 (executable)
@@ -30,7 +30,7 @@ pushd $MNTDIR
 
 for t in $(seq 0 $(($BENCH_THREADS - 1))); do
     mkdir t$t
-    for i in {0..$(($BENCH_FILECOUNT - 1))}; do
+    for i in $(seq 0 $(($BENCH_FILECOUNT - 1))); do
         dd if=/dev/zero of=t$t/$i bs=$BENCH_FILESIZE count=1
     done
 done