From b82fedab2505eccef3161d225473a5c75dd012cd Mon Sep 17 00:00:00 2001 From: "Schanzenbach, Martin" Date: Tue, 31 Dec 2019 00:14:27 +0900 Subject: more accurate calculation --- src/transport/test_communicator_basic.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/transport/test_communicator_basic.c b/src/transport/test_communicator_basic.c index e11fb09eb..0d6df751a 100644 --- a/src/transport/test_communicator_basic.c +++ b/src/transport/test_communicator_basic.c @@ -366,12 +366,8 @@ incoming_message_cb (void *cls, GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, "Short size packet test done.\n"); char *goodput = GNUNET_STRINGS_byte_size_fancy ((SHORT_MESSAGE_SIZE - * num_received) - / (GNUNET_MAX (1, - duration. - rel_value_us - / (1000 - * 1000)))); + * num_received * 1000 * 1000) + / duration.rel_value_us); GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, "%lu/%lu packets in %llu us (%s/s) -- avg latency: %llu us\n", (unsigned long) num_received, @@ -406,12 +402,8 @@ incoming_message_cb (void *cls, GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, "Long size packet test done.\n"); char *goodput = GNUNET_STRINGS_byte_size_fancy ((LONG_MESSAGE_SIZE - * num_received) - / (GNUNET_MAX (1, - duration. - rel_value_us - / (1000 - * 1000)))); + * num_received * 1000 * 1000) + / duration.rel_value_us); GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, "%lu/%lu packets in %llu us (%s/s) -- avg latency: %llu us\n", -- cgit v1.2.3