* cpu test now runs about 30 minutes

This commit is contained in:
Jeff Carr 2011-09-27 10:35:50 -04:00
parent 1e2ab7dc66
commit b993aef039
2 changed files with 6 additions and 1 deletions

View File

@ -13,10 +13,13 @@ local:
prep:
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 ssh BLAH ./prep.pl
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH ./prep.pl
screen:
cat loadbot/testservers |xargs --verbose -n 1 --replace=BLAH ssh BLAH "screen -d -m -S loadbot -c /root/benchmarks/screenrc"
killall:
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"

View File

@ -1,5 +1,6 @@
#!/bin/bash -x
# This averages about half an hour on a 3 ghz cpu
cd /root/benchmarks
cd cpu
time ./bc_sin.sh 500
@ -7,3 +8,4 @@ time ./bc_sin.sh 1000
time ./bc_sin.sh 2000
time ./bc_sin.sh 4000
time ./bc_sin.sh 8000
time ./bc_sin.sh 16000