63307d015b
Based on 1 normalized pattern(s): released under the terms of the gpl v2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 5 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Enrico Weigelt <info@metux.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081203.398003637@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
31 lines
645 B
Bash
Executable File
31 lines
645 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# pstore_tests - Check pstore's behavior before crash/reboot
|
|
#
|
|
# Copyright (C) Hitachi Ltd., 2015
|
|
# Written by Hiraku Toyooka <hiraku.toyooka.gu@hitachi.com>
|
|
#
|
|
|
|
. ./common_tests
|
|
|
|
prlog -n "Checking pstore console is registered ... "
|
|
dmesg | grep -q "console \[pstore"
|
|
show_result $?
|
|
|
|
prlog -n "Checking /dev/pmsg0 exists ... "
|
|
test -e /dev/pmsg0
|
|
show_result $?
|
|
|
|
prlog -n "Writing unique string to /dev/pmsg0 ... "
|
|
if [ -e "/dev/pmsg0" ]; then
|
|
echo "${TEST_STRING_PATTERN}""$UUID" > /dev/pmsg0
|
|
show_result $?
|
|
echo "$UUID" > $TOP_DIR/uuid
|
|
else
|
|
prlog "FAIL"
|
|
rc=1
|
|
fi
|
|
|
|
exit $rc
|