* cpu test now runs about 30 minutes
This commit is contained in:
parent
1e2ab7dc66
commit
b993aef039
5
Makefile
5
Makefile
|
@ -13,10 +13,13 @@ local:
|
||||||
prep:
|
prep:
|
||||||
git update-server-info
|
git update-server-info
|
||||||
cat loadbot/testservers |xargs -n 1 --replace=BLAH scp loadbot/prep.pl BLAH:
|
cat loadbot/testservers |xargs -n 1 --replace=BLAH scp loadbot/prep.pl BLAH:
|
||||||
cat loadbot/testservers |xargs -n 1 --replace=BLAH ssh BLAH ./prep.pl
|
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH ./prep.pl
|
||||||
|
|
||||||
screen:
|
screen:
|
||||||
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH "screen -d -m -S loadbot -c /root/benchmarks/screenrc"
|
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH "screen -d -m -S loadbot -c /root/benchmarks/screenrc"
|
||||||
|
|
||||||
killall:
|
killall:
|
||||||
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH "killall screen"
|
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH "killall screen"
|
||||||
|
|
||||||
|
logs:
|
||||||
|
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH "cat loadbot.0"
|
||||||
|
|
2
doit.sh
2
doit.sh
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash -x
|
#!/bin/bash -x
|
||||||
|
|
||||||
|
# This averages about half an hour on a 3 ghz cpu
|
||||||
cd /root/benchmarks
|
cd /root/benchmarks
|
||||||
cd cpu
|
cd cpu
|
||||||
time ./bc_sin.sh 500
|
time ./bc_sin.sh 500
|
||||||
|
@ -7,3 +8,4 @@ time ./bc_sin.sh 1000
|
||||||
time ./bc_sin.sh 2000
|
time ./bc_sin.sh 2000
|
||||||
time ./bc_sin.sh 4000
|
time ./bc_sin.sh 4000
|
||||||
time ./bc_sin.sh 8000
|
time ./bc_sin.sh 8000
|
||||||
|
time ./bc_sin.sh 16000
|
||||||
|
|
Loading…
Reference in New Issue