mirror of https://gitee.com/openkylin/linux.git
selftests/kexec: define common logging functions
Define log_info, log_pass, log_fail, and log_skip functions. Suggested-by: Petr Vorel <pvorel@suse.cz> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com> Reviewed-by: Petr Vorel <pvorel@suse.cz> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
parent
5025b0f0fa
commit
6038c81526
|
@ -1,5 +1,35 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
#
|
||||||
|
# Kselftest framework defines: ksft_pass=0, ksft_fail=1, ksft_skip=4
|
||||||
|
|
||||||
|
VERBOSE="${VERBOSE:-1}"
|
||||||
|
|
||||||
|
log_info()
|
||||||
|
{
|
||||||
|
[ $VERBOSE -ne 0 ] && echo "[INFO] $1"
|
||||||
|
}
|
||||||
|
|
||||||
|
# The ksefltest framework requirement returns 0 for PASS.
|
||||||
|
log_pass()
|
||||||
|
{
|
||||||
|
[ $VERBOSE -ne 0 ] && echo "$1 [PASS]"
|
||||||
|
exit 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# The ksefltest framework requirement returns 1 for FAIL.
|
||||||
|
log_fail()
|
||||||
|
{
|
||||||
|
[ $VERBOSE -ne 0 ] && echo "$1 [FAIL]"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# The ksefltest framework requirement returns 4 for SKIP.
|
||||||
|
log_skip()
|
||||||
|
{
|
||||||
|
[ $VERBOSE -ne 0 ] && echo "$1"
|
||||||
|
exit 4
|
||||||
|
}
|
||||||
|
|
||||||
# Check efivar SecureBoot-$(the UUID) and SetupMode-$(the UUID).
|
# Check efivar SecureBoot-$(the UUID) and SetupMode-$(the UUID).
|
||||||
# The secure boot mode can be accessed either as the last integer
|
# The secure boot mode can be accessed either as the last integer
|
||||||
|
|
|
@ -6,15 +6,10 @@
|
||||||
|
|
||||||
TEST="$0"
|
TEST="$0"
|
||||||
. ./kexec_common_lib.sh
|
. ./kexec_common_lib.sh
|
||||||
rc=0
|
|
||||||
|
|
||||||
# Kselftest framework requirement - SKIP code is 4.
|
|
||||||
ksft_skip=4
|
|
||||||
|
|
||||||
# kexec requires root privileges
|
# kexec requires root privileges
|
||||||
if [ $(id -ru) -ne 0 ]; then
|
if [ $(id -ru) -ne 0 ]; then
|
||||||
echo "$TEST: requires root privileges" >&2
|
log_skip "requires root privileges"
|
||||||
exit $ksft_skip
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
get_secureboot_mode
|
get_secureboot_mode
|
||||||
|
@ -26,18 +21,14 @@ kexec --load $KERNEL_IMAGE > /dev/null 2>&1
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
kexec --unload
|
kexec --unload
|
||||||
if [ $secureboot -eq 1 ]; then
|
if [ $secureboot -eq 1 ]; then
|
||||||
echo "$TEST: kexec_load succeeded [FAIL]"
|
log_fail "kexec_load succeeded"
|
||||||
rc=1
|
|
||||||
else
|
else
|
||||||
echo "$TEST: kexec_load succeeded [PASS]"
|
log_pass "kexec_load succeeded"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ $secureboot -eq 1 ]; then
|
if [ $secureboot -eq 1 ]; then
|
||||||
echo "$TEST: kexec_load failed [PASS]"
|
log_pass "kexec_load failed"
|
||||||
else
|
else
|
||||||
echo "$TEST: kexec_load failed [FAIL]"
|
log_fail "kexec_load failed"
|
||||||
rc=1
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit $rc
|
|
||||||
|
|
Loading…
Reference in New Issue