Based off b80915eb99
and compacted into a single commit so that it will fit on the uni git server
11 lines
254 B
Bash
Executable File
11 lines
254 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
|
|
|
|
python3 -m unittest -v tpm2_tests.SmokeTest
|
|
python3 -m unittest -v tpm2_tests.AsyncTest
|