gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r33369 - gnunet/src/cadet


From: gnunet
Subject: [GNUnet-SVN] r33369 - gnunet/src/cadet
Date: Fri, 23 May 2014 02:38:02 +0200

Author: bartpolot
Date: 2014-05-23 02:38:01 +0200 (Fri, 23 May 2014)
New Revision: 33369

Modified:
   gnunet/src/cadet/test_cadet.c
Log:
- fix name detection

Modified: gnunet/src/cadet/test_cadet.c
===================================================================
--- gnunet/src/cadet/test_cadet.c       2014-05-23 00:38:00 UTC (rev 33368)
+++ gnunet/src/cadet/test_cadet.c       2014-05-23 00:38:01 UTC (rev 33369)
@@ -880,21 +880,21 @@
   }
 
   /* Find out requested test */
-  if (strstr (argv[0], "_cadet_forward") != NULL)
+  if (strstr (argv[0], "_forward") != NULL)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "FORWARD\n");
     test = FORWARD;
     test_name = "unicast";
     ok_goal = 4;
   }
-  else if (strstr (argv[0], "_cadet_signal") != NULL)
+  else if (strstr (argv[0], "_signal") != NULL)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SIGNAL\n");
     test = P2P_SIGNAL;
     test_name = "signal";
     ok_goal = 4;
   }
-  else if (strstr (argv[0], "_cadet_speed_ack") != NULL)
+  else if (strstr (argv[0], "_speed_ack") != NULL)
   {
     /* Test is supposed to generate the following callbacks:
      * 1 incoming channel (@dest)
@@ -907,7 +907,7 @@
     test = SPEED_ACK;
     test_name = "speed ack";
   }
-  else if (strstr (argv[0], "_cadet_speed") != NULL)
+  else if (strstr (argv[0], "_speed") != NULL)
   {
     /* Test is supposed to generate the following callbacks:
      * 1 incoming channel (@dest)




reply via email to

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