3221f4e91f
Currently, the makedumpfile option '--message-level' is set to 1 when dumping the vmcore, it only displays the progress indicator message, but there are no common message and error message, it is important to report some additional messages, especially for the error message, which is very useful for the debugging. In view of this, let's change the message level to 7 by default. Signed-off-by: Lianbo Jiang <lijiang@redhat.com> Acked-by: Kairui Song <kasong@redhat.com>
33 lines
525 B
Bash
Executable File
33 lines
525 B
Bash
Executable File
on_build() {
|
|
:
|
|
}
|
|
|
|
on_test() {
|
|
local boot_count=$(get_test_boot_count)
|
|
|
|
if [ $boot_count -eq 1 ]; then
|
|
cat << EOF > /etc/kdump.conf
|
|
path /var/crash
|
|
core_collector makedumpfile -l --message-level 7 -d 31
|
|
EOF
|
|
kdumpctl start || test_failed "Failed to start kdump"
|
|
|
|
sync
|
|
|
|
echo 1 > /proc/sys/kernel/sysrq
|
|
echo c > /proc/sysrq-trigger
|
|
|
|
elif [ $boot_count -eq 2 ]; then
|
|
|
|
if has_valid_vmcore_dir /var/crash; then
|
|
test_passed
|
|
else
|
|
test_failed
|
|
fi
|
|
|
|
shutdown -h 0
|
|
else
|
|
test_failed "Unexpected reboot"
|
|
fi
|
|
}
|