[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] branch master updated (b78e24a1 -> d874f86d)
From: |
gnunet |
Subject: |
[libmicrohttpd] branch master updated (b78e24a1 -> d874f86d) |
Date: |
Mon, 29 Jan 2024 23:51:16 +0100 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a change to branch master
in repository libmicrohttpd.
from b78e24a1 Fixed compiler warnings
new 8ffa0a10 Fuzz tests: muted undefined behaviour signal
new d874f86d Fuzz test: increased tests' timeout value
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
src/testzzuf/test_get.c | 3 ++-
src/testzzuf/zzuf_socat_test_runner.sh | 2 +-
src/testzzuf/zzuf_test_runner.sh | 2 +-
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/testzzuf/test_get.c b/src/testzzuf/test_get.c
index a687555a..ef5a098b 100644
--- a/src/testzzuf/test_get.c
+++ b/src/testzzuf/test_get.c
@@ -704,7 +704,8 @@ ahc_check (void *cls,
/* Check that all 'upload_data' is addressable */
size_t pos;
for (pos = 0; pos < *upload_data_size; ++pos)
- data_sum += (unsigned char) upload_data[pos];
+ data_sum =
+ (unsigned char) (data_sum + (unsigned char) upload_data[pos]);
if (0 != *upload_data_size)
{
if (3 >= *upload_data_size)
diff --git a/src/testzzuf/zzuf_socat_test_runner.sh
b/src/testzzuf/zzuf_socat_test_runner.sh
index 6bc4ef37..a87342ab 100755
--- a/src/testzzuf/zzuf_socat_test_runner.sh
+++ b/src/testzzuf/zzuf_socat_test_runner.sh
@@ -8,7 +8,7 @@ fi
socat_listen_ip='127.0.0.121'
socat_listen_port='10121'
mhd_listen_port='4010'
-max_runtime_sec='300'
+max_runtime_sec='1800'
if test "x${ZZUF}" = "xno" ; then
echo "zzuf command missing" 1>&2
diff --git a/src/testzzuf/zzuf_test_runner.sh b/src/testzzuf/zzuf_test_runner.sh
index 20cd8114..a6d35b5d 100755
--- a/src/testzzuf/zzuf_test_runner.sh
+++ b/src/testzzuf/zzuf_test_runner.sh
@@ -1,7 +1,7 @@
#!/bin/sh
mhd_listen_ip='127.0.0.1'
-max_runtime_sec='300'
+max_runtime_sec='1800'
if test "x${ZZUF}" = "xno" ; then
echo "zzuf command missing" 1>&2
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [libmicrohttpd] branch master updated (b78e24a1 -> d874f86d),
gnunet <=