gnunet-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Small patch for src/util/test_os_start_process.c


From: Sebastian Javier Marchano
Subject: Small patch for src/util/test_os_start_process.c
Date: Tue, 5 Jan 2021 17:43:29 -0300

Hello!

I was playing around with gnunet and alpine and it seems that this test (os start process) breaks because alpine uses the same binary for some commands (/bin/busybox) and relies on the filename for the command name. 

Best regards

diff --git a/src/util/test_os_start_process.c b/src/util/test_os_start_process.c
index ff5021d03..7e5cde1a9 100644
--- a/src/util/test_os_start_process.c
+++ b/src/util/test_os_start_process.c
@@ -138,7 +138,7 @@ run_task (void *cls)
     GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ERR,
                              hello_pipe_stdin, hello_pipe_stdout, NULL,
                              fn,
-                             "test_gnunet_echo_hello", "-", NULL);
+                             "cat", "-", NULL);
   GNUNET_free (fn);
 
   /* Close the write end of the read pipe */



--
Sebastian

reply via email to

[Prev in Thread] Current Thread [Next in Thread]