mirror of
https://github.com/systemd/systemd
synced 2024-11-05 18:25:39 +00:00
7a321b5a21
Having these named differently than the test itself mostly creates unecessary confusion and makes writing logic against the tests harder so let's rename the testsuite-xx units and scripts to just use the test name itself.
27 lines
685 B
Bash
Executable file
27 lines
685 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
export SYSTEMD_LOG_LEVEL=debug
|
|
SD_TPM2SETUP="/usr/lib/systemd/systemd-tpm2-setup"
|
|
|
|
if [[ ! -x "${SD_TPM2SETUP:?}" ]]; then
|
|
echo "$SD_TPM2SETUP not found, skipping the test"
|
|
exit 0
|
|
fi
|
|
|
|
"$SD_TPM2SETUP" --help
|
|
"$SD_TPM2SETUP" --version
|
|
"$SD_TPM2SETUP" --tpm2-device=list
|
|
"$SD_TPM2SETUP" --tpm2-device=auto
|
|
"$SD_TPM2SETUP" --tpm2-device=/dev/tpm0
|
|
"$SD_TPM2SETUP" --early=yes
|
|
"$SD_TPM2SETUP" --early=yes
|
|
"$SD_TPM2SETUP" --early=no
|
|
"$SD_TPM2SETUP" --early=no
|
|
|
|
(! "$SD_TPM2SETUP" "")
|
|
(! "$SD_TPM2SETUP" --tpm2-device=)
|
|
(! "$SD_TPM2SETUP" --tpm2-device=/dev/null)
|
|
(! "$SD_TPM2SETUP" --foo=bar)
|