From 1cd769894338df894dc7c5b5ef0db911f79bfc03 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Wed, 16 May 2018 22:02:13 +0200 Subject: [PATCH] [Test] Helper:Pidfile generate tmp. pidfilename. --- test/helper-pidfile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/helper-pidfile.c b/test/helper-pidfile.c index 6149e0c9..e6550a4c 100644 --- a/test/helper-pidfile.c +++ b/test/helper-pidfile.c @@ -71,7 +71,8 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char ** argv ) // Tests basic functionality of writing it, locking, seeing if I can write same again // And close/reopen it again. { - char *path = tempnam(NULL, "rofi-pid"); + const char *tmpd = g_get_tmp_dir (); + char *path = g_build_filename (tmpd, "rofi-pid.pid", NULL); TASSERT( create_pid_file ( NULL ) == -1 ); int fd = create_pid_file ( path ); TASSERT( fd >= 0 );