old-benchmark-code/kernel/stress.sh

33 lines
416 B
Bash
Raw Normal View History

2011-10-28 11:40:42 -05:00
#!/bin/bash -x
date -u
2011-10-31 12:33:50 -05:00
cd /root/
hosts="try1 try2 try3 try4 try5"
2011-10-28 11:40:42 -05:00
for host in ${hosts}; do
echo start {host}
2011-10-28 11:40:42 -05:00
date -u
sync
2011-10-31 12:33:50 -05:00
/root/benchmarks/kernel/build.pl
2011-10-28 11:40:42 -05:00
date -u
sync
date -u
2011-10-31 12:33:50 -05:00
/root/benchmarks/kernel/build.pl --mrproper
date -u
sync
date -u
2011-10-31 12:33:50 -05:00
/root/benchmarks/kernel/build.pl --bigconfig
date -u
sync
date -u
2011-10-31 12:33:50 -05:00
/root/benchmarks/kernel/build.pl --clean
2011-10-28 11:40:42 -05:00
date -u
sync
echo end {host}
2011-10-28 11:40:42 -05:00
date -u
done