[Spice-devel] [PATCH spice-gtk v4 28/29] test-cd-emu: Make sure we can call spice_usb_backend_channel_flush_writes
Frediano Ziglio
fziglio at redhat.com
Tue Aug 27 09:22:45 UTC 2019
Currently we call this function when the SPICE channel is up
however this function should continue to work as in theory
the channel could avoid to handle the message and stop the flow
(for instance to implement some kind of flow limitation)
and so will need to call this function again.
This was failing in the first USB emulation implementation
causing a crash.
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
tests/cd-emu.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/cd-emu.c b/tests/cd-emu.c
index 8bc3a7ed..da6e3c3f 100644
--- a/tests/cd-emu.c
+++ b/tests/cd-emu.c
@@ -151,6 +151,10 @@ printf("LOOP %d\n", loop);
g_assert_cmpint(hellos_sent, ==, hellos_expected);
g_assert_cmpint(messages_sent, >=, messages_expected);
+ spice_usb_backend_channel_flush_writes(usb_ch);
+ g_assert_cmpint(hellos_sent, ==, hellos_expected);
+ g_assert_cmpint(messages_sent, >=, messages_expected);
+
// send hello reply
if (loop == 0) {
DATA_START
--
2.20.1
More information about the Spice-devel
mailing list