1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

[Test] Helper:Pidfile generate tmp. pidfilename.

This commit is contained in:
Dave Davenport 2018-05-16 22:02:13 +02:00
parent bc42f244fa
commit 1cd7698943

View file

@ -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 );