mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-08-08 16:48:06 +00:00
test-stream-device: Expect the g_log warning about invalid message
Fixes test-stream-device after adding a log warning about an invalid message received on the stream device, glib tests fail on unexpected warning messages. Signed-off-by: Lukáš Hrázký <lhrazky@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
This commit is contained in:
parent
81480cc3cc
commit
5c98338479
@ -327,6 +327,8 @@ static void test_stream_device(TestFixture *fixture, gconstpointer user_data)
|
||||
spice_server_char_device_wakeup(&vmc_instance);
|
||||
g_assert_cmpint(pos, ==, 0);
|
||||
|
||||
g_test_expect_message(G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, "Stream device received invalid message: Invalid message type");
|
||||
|
||||
// we need to open the device and kick the start
|
||||
spice_server_port_event(&vmc_instance, SPICE_PORT_EVENT_OPENED);
|
||||
spice_server_char_device_wakeup(&vmc_instance);
|
||||
@ -395,6 +397,8 @@ static void test_stream_device_format_after_data(TestFixture *fixture, gconstpoi
|
||||
*message_sizes_end = p - message;
|
||||
++message_sizes_end;
|
||||
|
||||
g_test_expect_message(G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, "Stream device received invalid message: Invalid message type");
|
||||
|
||||
test_kick();
|
||||
|
||||
// we should read all data
|
||||
@ -442,6 +446,8 @@ static void test_stream_device_huge_data(TestFixture *fixture, gconstpointer use
|
||||
*message_sizes_end = p - message;
|
||||
++message_sizes_end;
|
||||
|
||||
g_test_expect_message(G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, "Stream device received invalid message: STREAM_DATA too large");
|
||||
|
||||
test_kick();
|
||||
|
||||
// we should read all data
|
||||
|
||||
Loading…
Reference in New Issue
Block a user