diff options
author | t3sserakt <t3ss@posteo.de> | 2020-09-10 18:12:38 +0200 |
---|---|---|
committer | t3sserakt <t3ss@posteo.de> | 2020-09-10 18:12:38 +0200 |
commit | e85272618eae2303c043b1f9a1df387907c23010 (patch) | |
tree | e3141c06b59e45057e335845d9c37272f983e6ab | |
parent | 72331deb3bfed2e82f1d5c87eb185ab67d783308 (diff) |
- really added data for tng test and adjusted message overhead from maximum payload size
-rw-r--r-- | .buildbot/firefly-x86_64-amdepyc_test_tng.sh | 2 | ||||
-rw-r--r-- | src/transport/test_communicator_basic.c | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/.buildbot/firefly-x86_64-amdepyc_test_tng.sh b/.buildbot/firefly-x86_64-amdepyc_test_tng.sh index 031615517..75a1cb994 100644 --- a/.buildbot/firefly-x86_64-amdepyc_test_tng.sh +++ b/.buildbot/firefly-x86_64-amdepyc_test_tng.sh @@ -3,6 +3,6 @@ # echo "Skipped" pushd src/transport -make check TESTS='test_communicator_basic-tcp test_communicator_rekey-tcp' +make check TESTS='test_communicator_basic-tcp test_communicator_rekey-tcp test_communicator_basic-unix' pkill --signal 9 -U buildbot gnunet popd diff --git a/src/transport/test_communicator_basic.c b/src/transport/test_communicator_basic.c index aa02bda93..e3573ac2c 100644 --- a/src/transport/test_communicator_basic.c +++ b/src/transport/test_communicator_basic.c @@ -221,7 +221,7 @@ make_payload (size_t payload_size) GNUNET_assert (payload_size >= 8); // So that out timestamp fits ts = GNUNET_TIME_absolute_get (); ts_n = GNUNET_TIME_absolute_hton (ts); - memset (payload, 0, payload_size); + memset (payload, 'a', payload_size); memcpy (payload, &ts_n, sizeof (struct GNUNET_TIME_AbsoluteNBO)); return payload; } @@ -367,8 +367,9 @@ add_queue_cb (void *cls, "Queue established, starting test...\n"); start_short = GNUNET_TIME_absolute_get (); my_tc = tc_h; - if (0 != mtu) - long_message_size = mtu - 4; /* Dummy message header overhead */ + if (0 != mtu) /* Message header overhead */ + long_message_size = mtu - sizeof(struct GNUNET_TRANSPORT_SendMessageTo) + - sizeof(struct GNUNET_MessageHeader); else long_message_size = LONG_MESSAGE_SIZE; phase = TP_BURST_SHORT; |