From 8a4ad5f9981270722785fa282e6cf351234f48c1 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Mon, 22 Jan 2024 11:22:45 +0000 Subject: [PATCH] tests: Add some debug output to memory-monitor-dbus.py test This will hopefully help diagnose #2887. Signed-off-by: Philip Withnall Helps: #2887 --- gio/tests/memory-monitor-dbus.py.in | 1 + 1 file changed, 1 insertion(+) diff --git a/gio/tests/memory-monitor-dbus.py.in b/gio/tests/memory-monitor-dbus.py.in index 25df1ebbb..8e4d88eb5 100755 --- a/gio/tests/memory-monitor-dbus.py.in +++ b/gio/tests/memory-monitor-dbus.py.in @@ -83,6 +83,7 @@ try: self.fail(message or 'timed out waiting for ' + str(condition)) def memory_warning_cb(self, monitor, level): + print("Received memory warning signal, level", level) self.last_warning = level self.main_context.wakeup()