vmcheck: Scrape out the journal on failure
So we can debug things more easily. Closes: #560 Approved by: jlebon
This commit is contained in:
parent
d3bf60d373
commit
dee0807147
@ -75,6 +75,7 @@ tests:
|
|||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- vmcheck.log
|
- vmcheck.log
|
||||||
|
- vmcheck-journal.txt
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ vm_cmd mv /etc/yum.repos.d{,.bak}
|
|||||||
vm_cmd mkdir /etc/yum.repos.d
|
vm_cmd mkdir /etc/yum.repos.d
|
||||||
|
|
||||||
LOG=${LOG:-"$PWD/vmcheck.log"}
|
LOG=${LOG:-"$PWD/vmcheck.log"}
|
||||||
|
origdir=$(pwd)
|
||||||
echo -n '' > ${LOG}
|
echo -n '' > ${LOG}
|
||||||
|
|
||||||
testdir="$(dirname $(realpath $0))"
|
testdir="$(dirname $(realpath $0))"
|
||||||
@ -114,12 +115,26 @@ for tf in $(find . -name 'test-*.sh' | sort); do
|
|||||||
vm_cmd ostree admin deploy vmcheck &>> ${LOG}
|
vm_cmd ostree admin deploy vmcheck &>> ${LOG}
|
||||||
vm_reboot
|
vm_reboot
|
||||||
fi
|
fi
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
# put back the original yum repos
|
# put back the original yum repos
|
||||||
vm_cmd rm -rf /etc/yum.repos.d
|
vm_cmd rm -rf /etc/yum.repos.d
|
||||||
vm_cmd mv /etc/yum.repos.d{.bak,}
|
vm_cmd mv /etc/yum.repos.d{.bak,}
|
||||||
|
|
||||||
|
# Gather post-failure system logs if necessary
|
||||||
|
ALL_LOGS=$LOG
|
||||||
|
if [ ${fail} -ne 0 ]; then
|
||||||
|
ALL_LOGS="$ALL_LOGS vmcheck-journal.txt"
|
||||||
|
vmcheck_journal=${origdir}/vmcheck-journal.txt
|
||||||
|
if ! vm_ssh_wait 30; then
|
||||||
|
echo "WARNING: Failed to wait for final reboot" > ${vmcheck_journal}
|
||||||
|
else
|
||||||
|
echo "Saving vmcheck-journal.txt"
|
||||||
|
vm_cmd 'journalctl --no-pager || true' > ${vmcheck_journal}
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# tear down ssh connection if needed
|
# tear down ssh connection if needed
|
||||||
if $SSH -O check &>/dev/null; then
|
if $SSH -O check &>/dev/null; then
|
||||||
$SSH -O exit &>/dev/null
|
$SSH -O exit &>/dev/null
|
||||||
@ -127,5 +142,5 @@ fi
|
|||||||
|
|
||||||
[ ${fail} -eq 0 ] && printer=pass || printer=fail
|
[ ${fail} -eq 0 ] && printer=pass || printer=fail
|
||||||
${printer}_print "TOTAL: $total PASS: $pass SKIP: $skip FAIL: $fail"
|
${printer}_print "TOTAL: $total PASS: $pass SKIP: $skip FAIL: $fail"
|
||||||
echo "See ${LOG} for more information."
|
echo "See ${ALL_LOGS} for more information."
|
||||||
[ ${fail} -eq 0 ]
|
[ ${fail} -eq 0 ]
|
||||||
|
Loading…
Reference in New Issue
Block a user