tests/qtest/vnc-display-test: Suppress build warnings on Windows
While this test is skipped on Windows, we still get when building: tests/qtest/vnc-display-test.c:22:20: warning: unused function 'on_vnc_error' [-Wunused-function] static inline void on_vnc_error(VncConnection* self, ^ tests/qtest/vnc-display-test.c:28:20: warning: unused function 'on_vnc_auth_failure' [-Wunused-function] static inline void on_vnc_auth_failure(VncConnection *self, ^ 2 warnings generated. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230119120514.28778-2-philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
c0031d389e
commit
6c25794fa3
@ -19,6 +19,8 @@ typedef struct Test {
|
|||||||
GMainLoop *loop;
|
GMainLoop *loop;
|
||||||
} Test;
|
} Test;
|
||||||
|
|
||||||
|
#if !defined(WIN32)
|
||||||
|
|
||||||
static void on_vnc_error(VncConnection* self,
|
static void on_vnc_error(VncConnection* self,
|
||||||
const char* msg)
|
const char* msg)
|
||||||
{
|
{
|
||||||
@ -31,6 +33,8 @@ static void on_vnc_auth_failure(VncConnection *self,
|
|||||||
g_error("vnc-auth-failure: %s", msg);
|
g_error("vnc-auth-failure: %s", msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
test_setup(Test *test)
|
test_setup(Test *test)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user