projects
/
bluesky.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
41b4c13
)
Minor fix to benchmark running script.
author
Michael Vrable
<mvrable@cs.ucsd.edu>
Thu, 10 Feb 2011 18:40:47 +0000
(10:40 -0800)
committer
Michael Vrable
<mvrable@cs.ucsd.edu>
Thu, 10 Feb 2011 18:40:47 +0000
(10:40 -0800)
microbench/setup/run-benchmark
patch
|
blob
|
history
diff --git
a/microbench/setup/run-benchmark
b/microbench/setup/run-benchmark
index
4b590e3
..
73cb99e
100755
(executable)
--- a/
microbench/setup/run-benchmark
+++ b/
microbench/setup/run-benchmark
@@
-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