From: LRN Date: Thu, 14 Feb 2013 18:33:11 +0000 (+0000) Subject: Temporary fix to make test_os_start_process pass again X-Git-Tag: initial-import-from-subversion-38251~9919 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0e9d7f60c2ebe8b3072f9d1bc233fb6c8204de00;p=oweals%2Fgnunet.git Temporary fix to make test_os_start_process pass again --- diff --git a/src/util/test_os_start_process.c b/src/util/test_os_start_process.c index 599451898..fc548e881 100644 --- a/src/util/test_os_start_process.c +++ b/src/util/test_os_start_process.c @@ -201,7 +201,7 @@ check_kill () return 1; } proc = - GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_ERR, hello_pipe_stdin, hello_pipe_stdout, fn, + GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_ERR, hello_pipe_stdin, hello_pipe_stdout, "gnunet-service-resolver", "gnunet-service-resolver", "-", NULL); sleep (1); /* give process time to start, so we actually use the pipe-kill mechanism! */ GNUNET_free (fn); @@ -236,7 +236,7 @@ check_instant_kill () return 1; } proc = - GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_ERR, hello_pipe_stdin, hello_pipe_stdout, fn, + GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_ERR, hello_pipe_stdin, hello_pipe_stdout, "gnunet-service-resolver", "gnunet-service-resolver", "-", NULL); if (0 != GNUNET_OS_process_kill (proc, SIGTERM)) {