gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] branch master updated: be more generous for short-


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: be more generous for short-lived tests wrt quota
Date: Sat, 13 Jan 2018 17:10:12 +0100

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

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 71ebcf79b be more generous for short-lived tests wrt quota
71ebcf79b is described below

commit 71ebcf79bcfafb5388e3ab9165358d006978238a
Author: Christian Grothoff <address@hidden>
AuthorDate: Sat Jan 13 17:09:25 2018 +0100

    be more generous for short-lived tests wrt quota
---
 src/transport/test_quota_compliance.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/transport/test_quota_compliance.c 
b/src/transport/test_quota_compliance.c
index 211e64e32..3ea5706d1 100644
--- a/src/transport/test_quota_compliance.c
+++ b/src/transport/test_quota_compliance.c
@@ -68,12 +68,12 @@ report ()
 
   delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value_us;
   datarate = (total_bytes_recv * 1000 * 1000) / delta;
-  
+
   FPRINTF (stderr,
            "Throughput was %llu b/s\n",
            datarate);
   ccc->global_ret = GNUNET_OK;
-  if (datarate > 1.1 * quota_in[1])
+  if (datarate > 1.5 * quota_in[1])
   {
     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                 "Datarate of %llu b/s significantly higher than allowed 
inbound quota of %llu b/s\n",
@@ -81,7 +81,7 @@ report ()
                 quota_in[1]);
     ccc->global_ret = GNUNET_SYSERR;
   }
-  if (datarate > 1.1 * quota_out[0])
+  if (datarate > 1.5 * quota_out[0])
   {
     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                 "Datarate of %llu b/s significantly higher than allowed 
outbound quota of %llu b/s\n",

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



reply via email to

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