From e85272618eae2303c043b1f9a1df387907c23010 Mon Sep 17 00:00:00 2001 From: t3sserakt Date: Thu, 10 Sep 2020 18:12:38 +0200 Subject: - really added data for tng test and adjusted message overhead from maximum payload size --- .buildbot/firefly-x86_64-amdepyc_test_tng.sh | 2 +- 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; -- cgit v1.2.3