mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 19:04:35 +00:00

Skip test cases for TPM 2.0 if TPM 2.0 support is not provided by swtpm. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
21 lines
429 B
Bash
Executable File
21 lines
429 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
TESTDIR=${abs_top_testdir:-$(dirname "$0")}
|
|
ROOT=${abs_top_builddir:-$(dirname "$0")/..}
|
|
source ${TESTDIR}/common
|
|
skip_test_no_tpm20 "${SWTPM_EXE}"
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
export SWTPM_IFACE=cuse
|
|
bash _test_tpm2_print_capabilities
|
|
ret=$?
|
|
[ $ret -ne 0 ] && [ $ret -ne 77 ] && exit $ret
|
|
|
|
export SWTPM_IFACE=socket
|
|
bash _test_tpm2_print_capabilities
|
|
ret=$?
|
|
[ $ret -ne 0 ] && [ $ret -ne 77 ] && exit $ret
|
|
|
|
exit 0
|