From 5c98338479933ae5b319e25e577f192eaf37223d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hr=C3=A1zk=C3=BD?= Date: Thu, 9 Aug 2018 11:25:09 +0200 Subject: [PATCH] test-stream-device: Expect the g_log warning about invalid message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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ý Acked-by: Christophe Fergeau --- server/tests/test-stream-device.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/server/tests/test-stream-device.c b/server/tests/test-stream-device.c index c1872d53..f1707d2f 100644 --- a/server/tests/test-stream-device.c +++ b/server/tests/test-stream-device.c @@ -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