From: Marc-André Lureau Date: Tue, 8 May 2018 15:29:35 +0000 (-0400) Subject: tests: fix tpm-crb tpm-tis tests race X-Git-Tag: v2.12.1~107 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4319ae939c8dd5d098f4d67e8456abbab22ad16e;p=thirdparty%2Fqemu.git tests: fix tpm-crb tpm-tis tests race No need to close the TPM data socket on the emulator end, qemu will close it after a SHUTDOWN. This avoids a race between close() and read() in the TPM data thread. Reported-by: Peter Maydell Signed-off-by: Marc-André Lureau Signed-off-by: Stefan Berger Reviewed-by: Daniel P. Berrangé Signed-off-by: Michael Tokarev (cherry picked from commit 7647d5c6b5e3b3f36a6e0441c81ae3fe797eb233) Signed-off-by: Michael Roth --- diff --git a/tests/tpm-emu.c b/tests/tpm-emu.c index 4dada768348..8c2bd53cada 100644 --- a/tests/tpm-emu.c +++ b/tests/tpm-emu.c @@ -125,7 +125,7 @@ void *tpm_emu_ctrl_thread(void *data) case CMD_SHUTDOWN: { ptm_res res = 0; qio_channel_write(ioc, (char *)&res, sizeof(res), &error_abort); - qio_channel_close(s->tpm_ioc, &error_abort); + /* the tpm data thread is expected to finish now */ g_thread_join(s->emu_tpm_thread); break; }