aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/tpm2/test_space.sh
diff options
context:
space:
mode:
authorNikita Sobolev <Nikita.Sobolev@synopsys.com>2020-05-21 17:43:44 +0300
committerShuah Khan <skhan@linuxfoundation.org>2020-05-22 13:19:57 -0600
commit5627f9cffee73dca9762135b6a8c7ab7213f31e2 (patch)
tree6eb6d67184b3ba0db57703c785d4665f4406f33d /tools/testing/selftests/tpm2/test_space.sh
parentselftests: vdso: Add a selftest for vDSO getcpu() (diff)
downloadlinux-dev-5627f9cffee73dca9762135b6a8c7ab7213f31e2.tar.xz
linux-dev-5627f9cffee73dca9762135b6a8c7ab7213f31e2.zip
Kernel selftests: Add check if TPM devices are supported
TPM2 tests set uses /dev/tpm0 and /dev/tpmrm0 without check if they are available. In case, when these devices are not available test fails, but expected behaviour is skipped test. Signed-off-by: Nikita Sobolev <Nikita.Sobolev@synopsys.com> Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Reviewed-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/tpm2/test_space.sh')
-rwxr-xr-xtools/testing/selftests/tpm2/test_space.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/testing/selftests/tpm2/test_space.sh b/tools/testing/selftests/tpm2/test_space.sh
index a6f5e346635e..36c9d030a1c6 100755
--- a/tools/testing/selftests/tpm2/test_space.sh
+++ b/tools/testing/selftests/tpm2/test_space.sh
@@ -1,4 +1,9 @@
#!/bin/bash
# SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
+# Kselftest framework requirement - SKIP code is 4.
+ksft_skip=4
+
+[ -f /dev/tpmrm0 ] || exit $ksft_skip
+
python -m unittest -v tpm2_tests.SpaceTest