aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/tpm2/test_space.sh
blob: 180b469c53b47d4e0e2e3d7c6bb2ecc7331065e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# 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
else
	exit $ksft_skip
fi