gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r10962 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r10962 - gnunet/src/util
Date: Sat, 17 Apr 2010 20:10:06 +0200

Author: grothoff
Date: 2010-04-17 20:10:06 +0200 (Sat, 17 Apr 2010)
New Revision: 10962

Modified:
   gnunet/src/util/test_os_start_process.c
Log:
fix

Modified: gnunet/src/util/test_os_start_process.c
===================================================================
--- gnunet/src/util/test_os_start_process.c     2010-04-17 17:47:53 UTC (rev 
10961)
+++ gnunet/src/util/test_os_start_process.c     2010-04-17 18:10:06 UTC (rev 
10962)
@@ -33,7 +33,7 @@
 #include "gnunet_scheduler_lib.h"
 #include "disk.h"
 
-#define VERBOSE GNUNET_YES
+#define VERBOSE GNUNET_NO
 
 static char *test_phrase = "HELLO WORLD";
 static int ok;
@@ -74,6 +74,7 @@
 
   if (bytes < 1)
     {
+      GNUNET_break (0);
       ok = 1;
       GNUNET_SCHEDULER_cancel(tc->sched, die_task);
       GNUNET_SCHEDULER_add_now(tc->sched, &end_task, NULL);
@@ -112,6 +113,7 @@
 
   if ((hello_pipe_stdout == NULL) || (hello_pipe_stdin == NULL))
     {
+      GNUNET_break (0);
       ok = 1;
       GNUNET_free (fn);
       return;
@@ -129,8 +131,9 @@
   wh = GNUNET_DISK_pipe_handle (hello_pipe_stdin, GNUNET_DISK_PIPE_END_WRITE);
 
   /* Write the test_phrase to the cat process */
-  if (GNUNET_DISK_file_write(wh, test_phrase, strlen(test_phrase) + 1) != 
GNUNET_YES)
+  if (GNUNET_DISK_file_write(wh, test_phrase, strlen(test_phrase) + 1) != 
strlen(test_phrase) + 1)
     {
+      GNUNET_break (0);
       ok = 1;
       return;
     }





reply via email to

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