[Qemu-devel] [PULL v1 0/4] Merge tpm 2018/06/06

Stefan Berger posted 4 patches 5 years, 10 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180606195805.185833-1-stefanb@linux.vnet.ibm.com
Test checkpatch passed
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test s390x passed
tests/Makefile.include     |   5 +-
tests/tpm-crb-swtpm-test.c | 189 +--------------------------------------------
tests/tpm-tests.c          | 127 ++++++++++++++++++++++++++++++
tests/tpm-tests.h          |  26 +++++++
tests/tpm-tis-swtpm-test.c |  66 ++++++++++++++++
tests/tpm-util.c           | 138 +++++++++++++++++++++++++++++++++
tests/tpm-util.h           |  14 ++++
7 files changed, 379 insertions(+), 186 deletions(-)
create mode 100644 tests/tpm-tests.c
create mode 100644 tests/tpm-tests.h
create mode 100644 tests/tpm-tis-swtpm-test.c
[Qemu-devel] [PULL v1 0/4] Merge tpm 2018/06/06
Posted by Stefan Berger 5 years, 10 months ago
This series of patches refactors existing TPM test code and adds another
TPM TIS test case testing TPM migration.

    Stefan

The following changes since commit c1c2a435905ae76b159c573b0c0d6f095b45ebc6:

  Merge remote-tracking branch 'remotes/stsquad/tags/pull-docker-updates-050618-1' into staging (2018-06-05 17:06:23 +0100)

are available in the Git repository at:

  git://github.com/stefanberger/qemu-tpm.git tags/pull-tpm-2018-06-06-1

for you to fetch changes up to 70663851ed4242435676c0bc288efbc1bc4ccf87:

  test: Add swtpm migration test for the TPM TIS interface (2018-06-06 15:44:12 -0400)

----------------------------------------------------------------
Merge tpm 2018/06/06 v1

----------------------------------------------------------------
Stefan Berger (4):
      test: Move reusable code from tpm-crb-swtpm-test.c to tpm-util.c
      test: Move common TPM test functions to tpm-tests.c
      test: Pass TPM interface model to functions creating command line
      test: Add swtpm migration test for the TPM TIS interface

 tests/Makefile.include     |   5 +-
 tests/tpm-crb-swtpm-test.c | 189 +--------------------------------------------
 tests/tpm-tests.c          | 127 ++++++++++++++++++++++++++++++
 tests/tpm-tests.h          |  26 +++++++
 tests/tpm-tis-swtpm-test.c |  66 ++++++++++++++++
 tests/tpm-util.c           | 138 +++++++++++++++++++++++++++++++++
 tests/tpm-util.h           |  14 ++++
 7 files changed, 379 insertions(+), 186 deletions(-)
 create mode 100644 tests/tpm-tests.c
 create mode 100644 tests/tpm-tests.h
 create mode 100644 tests/tpm-tis-swtpm-test.c

-- 
2.14.4


Re: [Qemu-devel] [PULL v1 0/4] Merge tpm 2018/06/06
Posted by Peter Maydell 5 years, 10 months ago
On 6 June 2018 at 20:58, Stefan Berger <stefanb@linux.vnet.ibm.com> wrote:
> This series of patches refactors existing TPM test code and adds another
> TPM TIS test case testing TPM migration.
>
>     Stefan
>
> The following changes since commit c1c2a435905ae76b159c573b0c0d6f095b45ebc6:
>
>   Merge remote-tracking branch 'remotes/stsquad/tags/pull-docker-updates-050618-1' into staging (2018-06-05 17:06:23 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/stefanberger/qemu-tpm.git tags/pull-tpm-2018-06-06-1
>
> for you to fetch changes up to 70663851ed4242435676c0bc288efbc1bc4ccf87:
>
>   test: Add swtpm migration test for the TPM TIS interface (2018-06-06 15:44:12 -0400)
>
> ----------------------------------------------------------------
> Merge tpm 2018/06/06 v1
>
> ----------------------------------------------------------------
> Stefan Berger (4):
>       test: Move reusable code from tpm-crb-swtpm-test.c to tpm-util.c
>       test: Move common TPM test functions to tpm-tests.c
>       test: Pass TPM interface model to functions creating command line
>       test: Add swtpm migration test for the TPM TIS interface
>

Applied, thanks.

-- PMM