forked from haiwan/sledge
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
638 B
34 lines
638 B
6 months ago
|
function usage {
|
||
|
echo "$0 [duration(s)] [concurrency]"
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
if [ $# != 2 ] ; then
|
||
|
usage
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
duration=$1
|
||
|
concurrency=$2
|
||
|
|
||
|
f1="105k_"$concurrency".txt"
|
||
|
echo $f1
|
||
|
f2="305k_"$concurrency".txt"
|
||
|
f3="5k_"$concurrency".txt"
|
||
|
f4="40k_"$concurrency".txt"
|
||
|
|
||
|
./test_8c.sh $f1 $duration $concurrency 105k.jpg 10000 2>&1 &
|
||
|
pid1=$!
|
||
|
./test_8c.sh $f2 $duration $concurrency 305k.jpg 10003 2>&1 &
|
||
|
pid2=$!
|
||
|
./test_8c.sh $f3 $duration $concurrency 5k.jpg 10006 2>&1 &
|
||
|
pid3=$!
|
||
|
./test_8c.sh $f4 $duration $concurrency 40k.jpg 10009 2>&1 &
|
||
|
pid4=$!
|
||
|
wait -f $pid1
|
||
|
wait -f $pid2
|
||
|
wait -f $pid3
|
||
|
wait -f $pid4
|
||
|
printf "[OK]\n"
|
||
|
|