Update update-fraction test
authorMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Fri, 12 Jun 2009 22:42:05 +0000 (18:42 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Fri, 12 Jun 2009 22:42:05 +0000 (18:42 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
runall.sh

index 3aa41af08b67e0f13ad0de8934f0ea2e9644b4f7..e07cb0a98260dab71a2a3bfd4eb90d6f0253290d 100755 (executable)
--- a/runall.sh
+++ b/runall.sh
@@ -16,8 +16,6 @@ NUM_CPUS=8
 
 echo Executing update fraction test
 
-NR_READERS=$((${NUM_CPUS} - 1))
-NR_WRITERS=1
 DURATION=10
 WDELAY_ARRAY="0 1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768
               65536 131072 262144 524288 1048576 2097152 4194304 8388608
@@ -25,13 +23,18 @@ WDELAY_ARRAY="0 1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768
 
 rm -f update-fraction.log
 
-for WDELAY in ${WDELAY_ARRAY}; do
-       ./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} -d ${WDELAY} ${EXTRA_OPTS} | tee -a update-fraction.log
+for NR_WRITERS in 1 2 3 4; do
+       NR_READERS=$((${NUM_CPUS} - ${NR_WRITERS}))
+       for WDELAY in ${WDELAY_ARRAY}; do
+               ./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} -d ${WDELAY} ${EXTRA_OPTS} | tee -a update-fraction.log
+       done
 done
+
 # Also run with no active writer for 0% update fraction
+NR_WRITERS=0
+NR_READERS=$((${NUM_CPUS} - ${NR_WRITERS}))
 ./runtests.sh ${NR_READERS} 0 ${DURATION} ${EXTRA_OPTS} | tee -a update-fraction.log
 
-
 #Test scalability :
 # x: vary number of readers from 0 to num cpus
 # y: ops/s
This page took 0.02595 seconds and 4 git commands to generate.