aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-01-13 17:09:25 +0100
committerChristian Grothoff <christian@grothoff.org>2018-01-13 17:09:25 +0100
commit71ebcf79bcfafb5388e3ab9165358d006978238a (patch)
treeb968df4c636fa685e37506cb10a1da581acc1645 /src
parentcc2e2672cb1fb74c393f68db3db8cd8192f2f35d (diff)
downloadgnunet-71ebcf79bcfafb5388e3ab9165358d006978238a.tar.gz
gnunet-71ebcf79bcfafb5388e3ab9165358d006978238a.zip
be more generous for short-lived tests wrt quota
Diffstat (limited to 'src')
-rw-r--r--src/transport/test_quota_compliance.c6
1 files 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 ()
68 68
69 delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value_us; 69 delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value_us;
70 datarate = (total_bytes_recv * 1000 * 1000) / delta; 70 datarate = (total_bytes_recv * 1000 * 1000) / delta;
71 71
72 FPRINTF (stderr, 72 FPRINTF (stderr,
73 "Throughput was %llu b/s\n", 73 "Throughput was %llu b/s\n",
74 datarate); 74 datarate);
75 ccc->global_ret = GNUNET_OK; 75 ccc->global_ret = GNUNET_OK;
76 if (datarate > 1.1 * quota_in[1]) 76 if (datarate > 1.5 * quota_in[1])
77 { 77 {
78 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 78 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
79 "Datarate of %llu b/s significantly higher than allowed inbound quota of %llu b/s\n", 79 "Datarate of %llu b/s significantly higher than allowed inbound quota of %llu b/s\n",
@@ -81,7 +81,7 @@ report ()
81 quota_in[1]); 81 quota_in[1]);
82 ccc->global_ret = GNUNET_SYSERR; 82 ccc->global_ret = GNUNET_SYSERR;
83 } 83 }
84 if (datarate > 1.1 * quota_out[0]) 84 if (datarate > 1.5 * quota_out[0])
85 { 85 {
86 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 86 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
87 "Datarate of %llu b/s significantly higher than allowed outbound quota of %llu b/s\n", 87 "Datarate of %llu b/s significantly higher than allowed outbound quota of %llu b/s\n",