[mutter/wip/smcv/disoriented: 4/4] tests: Add additional debug in wait_for_orientation()
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/smcv/disoriented: 4/4] tests: Add additional debug in wait_for_orientation()
- Date: Fri, 22 Oct 2021 07:43:22 +0000 (UTC)
commit 7c6fe21daf2d11b8c3caeee3d0a83150302ca4a2
Author: Simon McVittie <smcv debian org>
Date: Sun Oct 10 13:43:52 2021 +0100
tests: Add additional debug in wait_for_orientation()
Signed-off-by: Simon McVittie <smcv debian org>
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2049>
src/tests/orientation-manager-unit-tests.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
---
diff --git a/src/tests/orientation-manager-unit-tests.c b/src/tests/orientation-manager-unit-tests.c
index 77d632276f..85d9a6e54b 100644
--- a/src/tests/orientation-manager-unit-tests.c
+++ b/src/tests/orientation-manager-unit-tests.c
@@ -59,6 +59,9 @@ on_orientation_changed (WaitForOrientation *wfo,
{
wfo->orientation = meta_orientation_manager_get_orientation (orientation_manager);
wfo->times_signalled++;
+
+ g_test_message ("wait_for_orientation_changes: Orientation changed to %d: %s",
+ wfo->orientation, orientation_to_string (wfo->orientation));
}
static gboolean
@@ -83,6 +86,11 @@ wait_for_orientation (MetaOrientationManager *orientation_manager,
};
wfo.orientation = meta_orientation_manager_get_orientation (orientation_manager);
+ g_test_message ("%s: Waiting for orientation to change from "
+ "%d: %s to %d: %s...",
+ G_STRFUNC, wfo.orientation,
+ orientation_to_string (wfo.orientation),
+ orientation, orientation_to_string (orientation));
/* This timeout can be relatively generous because we don't expect to
* reach it: if we do, that's a test failure. */
@@ -104,6 +112,9 @@ wait_for_orientation (MetaOrientationManager *orientation_manager,
wfo.times_signalled);
}
+ g_test_message ("%s: Orientation is now %d: %s",
+ G_STRFUNC, orientation, orientation_to_string (orientation));
+
g_clear_handle_id (&wfo.timeout_id, g_source_remove);
g_signal_handler_disconnect (orientation_manager, wfo.connection_id);
@@ -123,6 +134,9 @@ wait_for_possible_orientation_change (MetaOrientationManager *orientation_manage
};
wfo.orientation = meta_orientation_manager_get_orientation (orientation_manager);
+ g_test_message ("%s: Waiting for orientation to maybe change from %d: %s...",
+ G_STRFUNC, wfo.orientation,
+ orientation_to_string (wfo.orientation));
/* This can't be as long as the timeout for wait_for_orientation(),
* because in the usual case we expect to reach this timeout: we're
@@ -137,6 +151,17 @@ wait_for_possible_orientation_change (MetaOrientationManager *orientation_manage
while (wfo.times_signalled == 0 && wfo.timeout_id != 0)
g_main_context_iteration (NULL, TRUE);
+ if (wfo.timeout_id == 0)
+ {
+ g_test_message ("%s: Orientation didn't change", G_STRFUNC);
+ }
+ else
+ {
+ g_test_message ("%s: Orientation is now %d: %s",
+ G_STRFUNC, wfo.orientation,
+ orientation_to_string (wfo.orientation));
+ }
+
g_clear_handle_id (&wfo.timeout_id, g_source_remove);
g_signal_handler_disconnect (orientation_manager, wfo.connection_id);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]