aboutsummaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-07-09 19:04:19 +0000
committerChristian Grothoff <christian@grothoff.org>2012-07-09 19:04:19 +0000
commit8f9464256fc06a884bf589b4004262a0549d11b3 (patch)
treea088b8acbebdefe2acf0b41cfed4418830275b78 /src/testing
parent817ee37a75fb8eb5887023d1a5152cb528ee2d5a (diff)
downloadgnunet-8f9464256fc06a884bf589b4004262a0549d11b3.tar.gz
gnunet-8f9464256fc06a884bf589b4004262a0549d11b3.zip
-LRN: Another take on std descriptor inheritance
Now descriptors are not inherited by default, you have to pass a set of flags to make it so. When pipes are given, flags have no effect. gnunet-arm now has two options to block stdout and stderr from being passed to gnunet-service-arm
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/testing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing.c b/src/testing/testing.c
index 3631f7b74..da0526576 100644
--- a/src/testing/testing.c
+++ b/src/testing/testing.c
@@ -905,7 +905,7 @@ GNUNET_TESTING_peer_start (struct GNUNET_TESTING_Peer *peer)
905 return GNUNET_SYSERR; 905 return GNUNET_SYSERR;
906 } 906 }
907 GNUNET_assert (NULL != peer->cfgfile); 907 GNUNET_assert (NULL != peer->cfgfile);
908 peer->main_process = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, 908 peer->main_process = GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL,
909 peer->main_binary, 909 peer->main_binary,
910 peer->main_binary, 910 peer->main_binary,
911 "-c", 911 "-c",