From 7d5c738dba56dbb31b1cbfaf533d005d940072a9 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 5 Aug 2016 20:12:38 +0100 Subject: [PATCH] gio/tests/file: increase an arbitrary timeout On slow ARM machines doing parallel builds, there's no guarantee that we'll get through this in 5 seconds. Signed-off-by: Simon McVittie Reviewed-by: Philip Withnall Bug: https://bugzilla.gnome.org/show_bug.cgi?id=769674 --- gio/tests/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/file.c b/gio/tests/file.c index 779183791..d07ba37b7 100644 --- a/gio/tests/file.c +++ b/gio/tests/file.c @@ -466,7 +466,7 @@ test_create_delete (gconstpointer d) data->loop = g_main_loop_new (NULL, FALSE); - data->timeout = g_timeout_add (5000, stop_timeout, NULL); + data->timeout = g_timeout_add (10000, stop_timeout, NULL); g_file_create_async (data->file, 0, 0, NULL, created_cb, data);