hw-test/scripts/test-all

60 lines
1.3 KiB
Text
Raw Normal View History

2016-12-20 05:16:18 -06:00
#!/bin/bash
2016-12-20 05:19:12 -06:00
source scan-dmidecode
2016-12-21 19:24:22 -06:00
source test-variables
2016-12-20 05:19:12 -06:00
echo $$ > /run/test.pid
2016-12-21 23:24:52 -06:00
TEST_CONTAINER=1
export TEST_CONTAINER
2021-07-04 23:36:55 -05:00
# Escaneos iniciales. Solo esc aneo
scan-netdev
scan-hdd
scan-meminfo
lspci > $OUTPUT_DIR/lspci
# De aquí en adelante lo dejo comentado para los siguientes escaneos
##scan-netdev
##test-memtester
##if [[ -f $OUTPUT_DIR/memtester.fail ]] ; then
## mkdir -p $SNAPSHOT_D
## cp -af $OUTPUT_DIR/* $SNAPSHOT_D/
## FAILED_PROCS=`head -1 $OUTPUT_DIR/memtester.fail | sed 's/[^0-9]//g'`
## echo "${BLD}$FAILED_PROCS${OFF} have ${RED}FAILED${OFF} the memtester test."
## echo "All tests have been stopped..."
## echo "${BLD}Please replace the failing memory and run this tests again.${OFF}"
## rm -f /run/test.pid
## while [[ 1 ]] ; do
## sleep 3600
## done
##fi
#test-badblocks
#if [[ -f $OUTPUT_DIR/badblocks.fail ]] ; then
# echo "One or more disks have ${RED}FAILED${OFF} the badblocks test."
# echo "${BLD}Please replace the failing disks and restart this tests again.{OFF}"
2017-01-09 17:36:15 -06:00
# rm -f /run/test.pid
# while [[ 1 ]] ; do
# sleep 3600
# done
#fi
2021-07-04 23:36:55 -05:00
#
##test-memtester summary
#test-badblocks summary
#
##test-fio
##test-pmbw
##test-linpack
#
## Take snapshot
#mkdir -p $SNAPSHOT_D
#cp -af $OUTPUT_DIR/* $SNAPSHOT_D/
#
#rm -f /run/test.pid
#while [[ 1 ]] ; do
# sleep 3600
#done
poweroff