From 3b89702bcff7ceaf699dfde0f01e684ec31fbe8b Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Sun, 16 Feb 2014 19:44:35 +0100 Subject: [PATCH] glib/tests/mappedfile.c: Use temp dir instead of user runtime dir Bug: https://bugzilla.gnome.org/show_bug.cgi?id=724412 --- glib/tests/mappedfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glib/tests/mappedfile.c b/glib/tests/mappedfile.c index ccaea345c..828a4f38a 100644 --- a/glib/tests/mappedfile.c +++ b/glib/tests/mappedfile.c @@ -85,7 +85,7 @@ test_writable (void) const gchar *new = "abcdefghijklmnopqrstuvxyz"; gchar *tmp_copy_path; - tmp_copy_path = g_build_filename (g_get_user_runtime_dir (), "glib-test-4096-random-bytes", NULL); + tmp_copy_path = g_build_filename (g_get_tmp_dir (), "glib-test-4096-random-bytes", NULL); g_file_get_contents (g_test_get_filename (G_TEST_DIST, "4096-random-bytes", NULL), &contents, &len, &error); g_assert_no_error (error); @@ -129,7 +129,7 @@ test_writable_fd (void) int fd; gchar *tmp_copy_path; - tmp_copy_path = g_build_filename (g_get_user_runtime_dir (), "glib-test-4096-random-bytes", NULL); + tmp_copy_path = g_build_filename (g_get_tmp_dir (), "glib-test-4096-random-bytes", NULL); g_file_get_contents (g_test_get_filename (G_TEST_DIST, "4096-random-bytes", NULL), &contents, &len, &error); g_assert_no_error (error);