mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-08-21 16:31:14 +02:00

Since Linux 5.6 tpm_version_major sysfs file is avaialble which gives the TPM version. Using this file the test can be skipped on systems with TPM 1.2. Signed-off-by: Michal Suchanek <msuchanek@suse.de> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
12 lines
315 B
Bash
Executable File
12 lines
315 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
|
|
|
|
# Kselftest framework requirement - SKIP code is 4.
|
|
ksft_skip=4
|
|
|
|
[ -e /dev/tpm0 ] || exit $ksft_skip
|
|
read tpm_version < /sys/class/tpm/tpm0/tpm_version_major
|
|
[ "$tpm_version" == 2 ] || exit $ksft_skip
|
|
|
|
python3 -m unittest -v tpm2_tests.SmokeTest 2>&1
|