summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2023-03-09 10:06:26 +1300
committerJule Anger <janger@samba.org>2023-03-30 15:10:10 +0000
commitb1c7df203d02410d829381f7b7fcfbc7c8d4bfd1 (patch)
tree732361aceb965d261afcd8b3ec6cd23a9b0478a0
parentbf5ccd5a14062dc31c09e167dadff9782ba1caba (diff)
downloadsamba-b1c7df203d02410d829381f7b7fcfbc7c8d4bfd1.tar.gz
tsocket: Increase tcp_user_timeout max_loops
Often, on rackspace GitLab CI runners, we get: UNEXPECTED(failure): samba.unittests.tsocket_tstream.test_tstream_more_tcp_user_timeout_spin(none) REASON: Exception: Exception: 0xf == 0xf ../../lib/tsocket/tests/test_tstream.c:405: error: Failure! This allows us more spins before we fail the test. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15328 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz> (cherry picked from commit 5a7a28cc45870949fc11d30586a06c309aa517dc)
-rw-r--r--lib/tsocket/tests/test_tstream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tsocket/tests/test_tstream.c b/lib/tsocket/tests/test_tstream.c
index a920e671cda..47008bb8bf8 100644
--- a/lib/tsocket/tests/test_tstream.c
+++ b/lib/tsocket/tests/test_tstream.c
@@ -322,7 +322,7 @@ static void test_tstream_server_spin_client_tcp_user_timeout(struct socket_pair
rc = write(sp->socket_client, TEST_STRING, sizeof(TEST_STRING));
assert_return_code(rc, errno);
sp->expected_errno = ETIMEDOUT;
- sp->max_loops = 15;
+ sp->max_loops = 30;
}
static void test_tstream_server_spin_client_both_timer(struct tevent_context *ev,