]> git.proxmox.com Git - swtpm.git/blame - tests/_test_migration_key_2
packaging: track dbgsym package for swtpm-libs and swtpm-tools
[swtpm.git] / tests / _test_migration_key_2
CommitLineData
05cd79b8
SB
1#!/bin/bash
2
3# Run the test_save_load_encrypted_state with swtpm_ioctl using the
4# read/write interface rather than ioctl
5export VTPM_NAME="vtpm-test2-migration-key"
6cd "$(dirname "$0")"
7
8export SWTPM_IOCTL_BUFFERSIZE=100
9bash test_migration_key
10ret=$?
11[ $ret -ne 0 ] && exit $ret
12
13export SWTPM_IOCTL_BUFFERSIZE=4096
14bash test_migration_key
15ret=$?
16[ $ret -ne 0 ] && exit $ret
17exit 0