summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2019-10-28 19:42:41 +0000
committerPhilip Withnall <withnall@endlessm.com>2019-10-28 20:36:51 +0000
commit6fb38c3f25e8e859812e25fe88fad752a68133b3 (patch)
tree7be834538af6913b5d4298615c9bc2b61a311482
parent833579d982e23d440210e82580fe920cacd24be9 (diff)
downloadglib-6fb38c3f25e8e859812e25fe88fad752a68133b3.tar.gz
tests: Isolate directories in gdbus-peer test
So that the tests all end up using separate `.dbus-keyring` directories, and hence not racing to create and acquire lock files, use `G_TEST_OPTION_ISOLATE_DIRS` to ensure they all run in separate disposable directories. This has the added benefit of meaning they don’t touch the developer’s actual `$HOME` directory. This reduces the false-failure rate of `gdbus-peer` by a factor of 9 for me on my local machine. Signed-off-by: Philip Withnall <withnall@endlessm.com> Fixes: #1912
-rw-r--r--gio/tests/gdbus-peer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/tests/gdbus-peer.c b/gio/tests/gdbus-peer.c
index b410e80d1..dc4176cf2 100644
--- a/gio/tests/gdbus-peer.c
+++ b/gio/tests/gdbus-peer.c
@@ -1922,7 +1922,7 @@ main (int argc,
gint ret;
GDBusNodeInfo *introspection_data = NULL;
- g_test_init (&argc, &argv, NULL);
+ g_test_init (&argc, &argv, G_TEST_OPTION_ISOLATE_DIRS, NULL);
introspection_data = g_dbus_node_info_new_for_xml (test_interface_introspection_xml, NULL);
g_assert (introspection_data != NULL);