REGTESTS: add missing timeouts to 30 tests

No less than 30 tests were missing timeouts, preventing them from being
started with zero-warning. Since they were not supposed to trigger, they
have been set to 30s so as never to trigger, and now they do not produce
any warning anymore.
This commit is contained in:
Willy Tarreau
2024-11-19 07:43:04 +01:00
parent 52b72ec3ba
commit d37610f43d
30 changed files with 132 additions and 4 deletions

View File

@@ -7,6 +7,11 @@ haproxy h1 -conf {
global
lua-load ${testdir}/h_txn_get_priv.lua
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
frontend fe1
mode http
bind "fd@${fe1}"

View File

@@ -40,6 +40,11 @@ haproxy h1 -conf {
global
lua-load ${testdir}/lua_httpclient.lua
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
frontend fe1
mode http
bind "fd@${fe1}"
@@ -49,10 +54,10 @@ haproxy h1 -conf {
mode http
http-request use-service lua.fakeserv
listen li1
mode http
bind unix@${tmpdir}/srv3
server srv3 ${s3_addr}:${s3_port}
listen li1
mode http
bind unix@${tmpdir}/srv3
server srv3 ${s3_addr}:${s3_port}
} -start

View File

@@ -12,6 +12,11 @@ haproxy h1 -conf {
global
lua-load ${testdir}/lua_socket.lua
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
frontend fe1
mode http
bind "fd@${fe1}"

View File

@@ -13,6 +13,11 @@ haproxy h1 -conf {
global
lua-load ${testdir}/set_var.lua
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
frontend fe1
mode http
bind "fd@${fe1}"

View File

@@ -15,6 +15,11 @@ haproxy h1 -conf {
lua-load-per-thread ${testdir}/txn_get_priv.lua
lua-load-per-thread ${testdir}/txn_get_priv-print_r.lua
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
frontend fe1
mode http
bind "fd@${fe1}"

View File

@@ -9,6 +9,11 @@ haproxy h1 -conf {
lua-load ${testdir}/txn_get_priv.lua
lua-load ${testdir}/txn_get_priv-print_r.lua
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
frontend fe1
mode http
bind "fd@${fe1}"

View File

@@ -45,6 +45,11 @@ haproxy h1 -conf {
global
lua-load ${testdir}/wrong_types_usage.lua
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
frontend fe1
mode http
bind "fd@${fe1}"