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

swtpm <0.8 tried to lock the .lock file when executing --print-states, which then failed when another swtpm was holding the lock. This adds a test case for this scenario. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
25 lines
551 B
Bash
Executable File
25 lines
551 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_tpm12 "${SWTPM_EXE}"
|
|
|
|
cd "$(dirname "$0")" || exit 1
|
|
|
|
export SWTPM_IFACE=cuse
|
|
bash _test_print_states
|
|
ret=$?
|
|
[ $ret -ne 0 ] && [ $ret -ne 77 ] && exit $ret
|
|
|
|
export SWTPM_IFACE=socket
|
|
export SWTPM_INTERFACE=socket+socket
|
|
export SWTPM_SERVER_NAME=localhost
|
|
export SWTPM_SERVER_PORT=65476
|
|
export SWTPM_CTRL_PORT=65477
|
|
bash _test_print_states
|
|
ret=$?
|
|
[ $ret -ne 0 ] && [ $ret -ne 77 ] && exit $ret
|
|
|
|
exit 0
|