119 lines
4 KiB
Bash
Executable file
119 lines
4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
TEST_DISK_SPACE="64G"
|
|
TEST_FILE_NUM=512
|
|
COOL_DOWN_TIME="3m"
|
|
COOL_DOWN_TIME_2="1m"
|
|
WARMUP_TIME=600
|
|
|
|
if [[ $# -lt 1 ]] ; then
|
|
echo "\\o/"
|
|
echo "Not enough arguments supplied" >&2
|
|
echo "You need to pass a name to store the test results" >&2
|
|
echo " |" >&2
|
|
echo "syntax: " >&2
|
|
echo " $(basename $0) <test-name> " >&2
|
|
echo "example: " >&2
|
|
echo " $(basename $0) odroid-h2+-emmc " >&2
|
|
echo "/!\\" >&2
|
|
exit 1
|
|
fi
|
|
|
|
LOGFILE="full_test_$1_$(hostname)-$(date '+%Y-%m-%d_%H-%M-%S').log"
|
|
|
|
echo ' '
|
|
echo "#### Starting benchmark ####" | tee $LOGFILE
|
|
echo TS=$(date --rfc-3339=ns) | tee -a $LOGFILE
|
|
echo TEST_DISK_SPACE=$TEST_DISK_SPACE | tee -a $LOGFILE
|
|
echo TEST_FILE_NUM=$TEST_FILE_NUM | tee -a $LOGFILE
|
|
echo COOL_DOWN_TIME=$COOL_DOWN_TIME | tee -a $LOGFILE
|
|
echo WARMUP_TIME=$WARMUP_TIME | tee -a $LOGFILE
|
|
echo ' ' | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "### System information ###" | tee -a $LOGFILE
|
|
echo "# uname -a #" | tee -a $LOGFILE
|
|
uname -a | tee -a $LOGFILE
|
|
echo "# /proc/version #" | tee -a $LOGFILE
|
|
cat /proc/version | tee -a $LOGFILE
|
|
echo "# /proc/meminfo #" | tee -a $LOGFILE
|
|
grep MemTotal /proc/meminfo | tee -a $LOGFILE
|
|
echo "# /proc/cpuinfo #" | tee -a $LOGFILE
|
|
cat /proc/cpuinfo | tee -a $LOGFILE
|
|
echo "# Block devices #" | tee -a $LOGFILE
|
|
lsblk | grep -v loop | tee -a $LOGFILE
|
|
echo "# df --block-size=G $(pwd) #" | tee -a $LOGFILE
|
|
df --block-size=G $(pwd) | tee -a $LOGFILE
|
|
BLOCK_DEVICES=$(lsblk | grep -v loop | grep disk | cut -f1 -d ' ')
|
|
for d in $BLOCK_DEVICES
|
|
do
|
|
echo "# block device /dev/$d => hdparm -Iv #" | tee -a $LOGFILE
|
|
sudo hdparm -Iv /dev/$d 2>&1 | tee -a $LOGFILE
|
|
echo "# block device /dev/$d => smartctl --all #" | tee -a $LOGFILE
|
|
sudo smartctl --all /dev/$d
|
|
done
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "### Sleeping for a $COOL_DOWN_TIME cooldown period ###" | tee -a $LOGFILE
|
|
echo "!!! Stop all other activities on the machine until the end of the test to avoid biasing the benchmark results !!!"
|
|
sleep $COOL_DOWN_TIME
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "#### Cold test - CPU ####" | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
/usr/local/bin/sysbench cpu run --threads=8 2>&1 | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "### Sleeping for a $COOL_DOWN_TIME cooldown period ###" | tee -a $LOGFILE
|
|
sleep $COOL_DOWN_TIME
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "#### Cold test - RAM ####" | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
/usr/local/bin/sysbench memory run --threads=8 2>&1 | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "### Sleeping for a $COOL_DOWN_TIME cooldown period ###" | tee -a $LOGFILE
|
|
sleep $COOL_DOWN_TIME
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "### Stressing the CPU for a $WARMUP_TIME seconds warmup period ###" | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
/usr/local/bin/sysbench cpu run --threads=8 --time=$WARMUP_TIME --report-interval=10 2>&1 | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "#### Hot test - CPU ####" | tee -a $LOGFILE
|
|
/usr/local/bin/sysbench cpu run --threads=8 2>&1 | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "#### Hot test - RAM ####" | tee -a $LOGFILE
|
|
/usr/local/bin/sysbench memory run --threads=8 2>&1 | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "#### Continue stressing CPU to consume power for a while ####" | tee -a $LOGFILE
|
|
for i in {1..6}
|
|
do
|
|
/usr/local/bin/sysbench cpu run --threads=8 --time=300 --report-interval=30 2>&1 | tee -a $LOGFILE
|
|
sensors 2>&1 | tee -a $LOGFILE
|
|
done
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo "### Sleeping for a $COOL_DOWN_TIME_2 cooldown period ###" | tee -a $LOGFILE
|
|
sleep $COOL_DOWN_TIME_2
|
|
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo TS=$(date --rfc-3339=ns) | tee -a $LOGFILE
|
|
|
|
echo calling $(dirname $0)/disk-test.sh $LOGFILE $TEST_DISK_SPACE $TEST_FILE_NUM | tee -a $LOGFILE
|
|
$(dirname $0)/disk-test.sh $LOGFILE $TEST_DISK_SPACE $TEST_FILE_NUM
|
|
|
|
echo ' ' | tee -a $LOGFILE
|
|
echo TS=$(date --rfc-3339=ns) | tee -a $LOGFILE
|
|
echo "#### Tests complete ####" | tee -a $LOGFILE
|