Commit b32694cd authored by Nikita Sobolev's avatar Nikita Sobolev Committed by Shuah Khan
Browse files

Kernel selftests: tpm2: check for tpm support



tpm2 tests set fails if there is no /dev/tpm0 and /dev/tpmrm0
supported. Check if these files exist before run and mark test as
skipped in case of absence.

Signed-off-by: default avatarNikita Sobolev <Nikita.Sobolev@synopsys.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent a098d9c8
Loading
Loading
Loading
Loading
+11 −2
Original line number Original line Diff line number Diff line
#!/bin/bash
#!/bin/bash
# SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
# SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
self.flags = flags


# Kselftest framework requirement - SKIP code is 4.
ksft_skip=4


if [ -f /dev/tpm0 ] ; then
	python -m unittest -v tpm2_tests.SmokeTest
	python -m unittest -v tpm2_tests.SmokeTest
	python -m unittest -v tpm2_tests.AsyncTest
	python -m unittest -v tpm2_tests.AsyncTest
else
	exit $ksft_skip
fi


CLEAR_CMD=$(which tpm2_clear)
CLEAR_CMD=$(which tpm2_clear)
if [ -n $CLEAR_CMD ]; then
if [ -n $CLEAR_CMD ]; then
+8 −1
Original line number Original line Diff line number Diff line
#!/bin/bash
#!/bin/bash
# SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
# SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)


# Kselftest framework requirement - SKIP code is 4.
ksft_skip=4

if [ -f /dev/tpmrm0 ] ; then
	python -m unittest -v tpm2_tests.SpaceTest
	python -m unittest -v tpm2_tests.SpaceTest
else
	exit $ksft_skip
fi