old-benchmark-code/kernel/stress.sh

33 lines
416 B
Bash
Executable File

#!/bin/bash -x
date -u
cd /root/
hosts="try1 try2 try3 try4 try5"
for host in ${hosts}; do
echo start {host}
date -u
sync
/root/benchmarks/kernel/build.pl
date -u
sync
date -u
/root/benchmarks/kernel/build.pl --mrproper
date -u
sync
date -u
/root/benchmarks/kernel/build.pl --bigconfig
date -u
sync
date -u
/root/benchmarks/kernel/build.pl --clean
date -u
sync
echo end {host}
date -u
done