From 35970686e13454baa819de97395fb23e023948f7 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Wed, 12 May 2021 03:11:27 +0200 Subject: [PATCH] Implement ping on tests Otherwise there's no pong and we get unnecessary noise. --- autotests/integration/kwin_wayland_test.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autotests/integration/kwin_wayland_test.h b/autotests/integration/kwin_wayland_test.h index a3f0c343b9..c22050b6d5 100644 --- a/autotests/integration/kwin_wayland_test.h +++ b/autotests/integration/kwin_wayland_test.h @@ -127,6 +127,10 @@ class XdgShell : public QtWayland::xdg_wm_base { public: ~XdgShell() override; + void xdg_wm_base_ping(uint32_t serial) override + { + pong(serial); + } }; /**