gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] 02/03: fix test


From: gnunet
Subject: [gnunet] 02/03: fix test
Date: Mon, 30 Dec 2019 15:53:20 +0100

This is an automated email from the git hooks/post-receive script.

martin-schanzenbach pushed a commit to branch master
in repository gnunet.

commit 8e2b774ff6804ca655243ad17c6e20857857f3ef
Author: Schanzenbach, Martin <address@hidden>
AuthorDate: Mon Dec 30 23:49:47 2019 +0900

    fix test
---
 src/transport/test_communicator_basic.c | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/src/transport/test_communicator_basic.c 
b/src/transport/test_communicator_basic.c
index 95e659726..437659aef 100644
--- a/src/transport/test_communicator_basic.c
+++ b/src/transport/test_communicator_basic.c
@@ -320,7 +320,7 @@ update_avg_latency (const char*payload)
   ts_n = (struct GNUNET_TIME_AbsoluteNBO *) payload;
   ts = GNUNET_TIME_absolute_ntoh (*ts_n);
   latency = GNUNET_TIME_absolute_get_duration (ts);
-  if (1 == num_received)
+  if (1 >= num_received)
     avg_latency = latency.rel_value_us;
   else
     avg_latency = ((avg_latency * (num_received - 1)) + latency.rel_value_us)
@@ -367,9 +367,11 @@ incoming_message_cb (void *cls,
                     "Short size packet test done.\n");
         char *goodput = GNUNET_STRINGS_byte_size_fancy ((SHORT_MESSAGE_SIZE
                                                          * num_received)
-                                                        / 
(duration.rel_value_us
-                                                           /
-                                                           1000));
+                                                        / (GNUNET_MAX (1,
+                                                                       
duration.
+                                                                       
rel_value_us
+                                                                       / (1000
+                                                                          * 
1000))));
         GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE,
                     "%lu/%lu packets in %llu us (%s/s) -- avg latency: %llu 
us\n",
                     (unsigned long) num_received,
@@ -405,16 +407,18 @@ incoming_message_cb (void *cls,
                     "Long size packet test done.\n");
         char *goodput = GNUNET_STRINGS_byte_size_fancy ((LONG_MESSAGE_SIZE
                                                          * num_received)
-                                                        / 
(duration.rel_value_us
-                                                           /
-                                                           1000));
+                                                        / (GNUNET_MAX (1,
+                                                                       
duration.
+                                                                       
rel_value_us
+                                                                       / (1000
+                                                                          * 
1000))));
 
         GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE,
                     "%lu/%lu packets in %llu us (%s/s) -- avg latency: %llu 
us\n",
                     (unsigned long) num_received,
                     (unsigned long) num_sent,
                     (unsigned long long) duration.rel_value_us,
-                                             goodput,
+                    goodput,
                     (unsigned long long) avg_latency);
         GNUNET_free (goodput);
         ack = 10;
@@ -446,6 +450,7 @@ incoming_message_cb (void *cls,
         iterations_left--;
         if (0 != iterations_left)
         {
+          start_short = GNUNET_TIME_absolute_get ();
           phase = TP_BURST_SHORT;
           active_task = GNUNET_SCHEDULER_add_now (&short_test,
                                                   NULL);

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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