tests/unit: test-qga: Avoid using hardcoded /tmp
This case was written to use hardcoded /tmp directory for temporary files. Update to use g_get_tmp_dir() for a portable implementation. Signed-off-by: Bin Meng <bin.meng@windriver.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220925113032.1949844-24-bmeng.cn@gmail.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
e0e5b3dc00
commit
5b9f2781c2
@ -60,7 +60,7 @@ fixture_setup(TestFixture *fixture, gconstpointer data, gchar **envp)
|
||||
|
||||
fixture->loop = g_main_loop_new(NULL, FALSE);
|
||||
|
||||
fixture->test_dir = g_strdup("/tmp/qgatest.XXXXXX");
|
||||
fixture->test_dir = g_strdup_printf("%s/qgatest.XXXXXX", g_get_tmp_dir());
|
||||
g_assert_nonnull(g_mkdtemp(fixture->test_dir));
|
||||
|
||||
path = g_build_filename(fixture->test_dir, "sock", NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user