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.
13 lines
187 B
13 lines
187 B
#!/usr/bin/env bash
|
|
|
|
if [ -z $1 ]; then
|
|
procs=1
|
|
else
|
|
procs=$1
|
|
fi
|
|
|
|
bench_exec="sysbench"
|
|
bench_var="--num-threads=$procs"
|
|
bench="$bench_exec $benc_var"
|
|
|
|
$bench --test=threads run
|