Browse Source

just use cat

Christian Grothoff 3 năm trước cách đây
mục cha
commit
cff7a2fe5f
1 tập tin đã thay đổi với 2 bổ sung8 xóa
  1. 2 8
      src/util/test_os_start_process.c

+ 2 - 8
src/util/test_os_start_process.c

@@ -118,29 +118,23 @@ read_call (void *cls)
 static void
 run_task (void *cls)
 {
-  char *fn;
   const struct GNUNET_DISK_FileHandle *stdout_read_handle;
   const struct GNUNET_DISK_FileHandle *wh;
 
-  GNUNET_asprintf (&fn, "cat");
-
   hello_pipe_stdin = GNUNET_DISK_pipe (GNUNET_DISK_PF_BLOCKING_RW);
   hello_pipe_stdout = GNUNET_DISK_pipe (GNUNET_DISK_PF_BLOCKING_RW);
   if ((hello_pipe_stdout == NULL) || (hello_pipe_stdin == NULL))
   {
     GNUNET_break (0);
     ok = 1;
-    GNUNET_free (fn);
     return;
   }
 
   proc =
     GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ERR,
                              hello_pipe_stdin, hello_pipe_stdout, NULL,
-                             fn,
-                             "test_gnunet_echo_hello", "-", NULL);
-  GNUNET_free (fn);
-
+                             "cat",
+                             "cat", "-", NULL);
   /* Close the write end of the read pipe */
   GNUNET_DISK_pipe_close_end (hello_pipe_stdout, GNUNET_DISK_PIPE_END_WRITE);
   /* Close the read end of the write pipe */