2024-11-20 16:07:36 +00:00
|
|
|
#EXCLUDE_TARGETS=osx
|
2020-01-14 14:38:43 +00:00
|
|
|
varnishtest "Try to start a master CLI with 2 programs"
|
|
|
|
#REGTEST_TYPE=bug
|
2021-06-11 17:56:17 +00:00
|
|
|
feature cmd "command -v sleep"
|
2020-01-14 14:38:43 +00:00
|
|
|
|
|
|
|
feature ignore_unknown_macro
|
|
|
|
|
|
|
|
# Do nothing. Is there only to create s1_* macros
|
|
|
|
server s1 {
|
|
|
|
} -start
|
|
|
|
|
2024-11-20 09:57:42 +00:00
|
|
|
haproxy h1 -Ws -S -conf {
|
2024-11-19 09:32:28 +00:00
|
|
|
global
|
|
|
|
expose-deprecated-directives
|
2020-01-14 14:38:43 +00:00
|
|
|
defaults
|
|
|
|
mode http
|
2021-11-18 16:46:22 +00:00
|
|
|
timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
|
|
timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
|
|
timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
|
2020-01-14 14:38:43 +00:00
|
|
|
|
|
|
|
frontend myfrontend
|
|
|
|
bind "fd@${my_fe}"
|
|
|
|
default_backend test
|
|
|
|
|
|
|
|
backend test
|
|
|
|
server www1 ${s1_addr}:${s1_port}
|
|
|
|
|
|
|
|
program foo
|
|
|
|
command sleep 10
|
|
|
|
|
|
|
|
program bar
|
|
|
|
command sleep 10
|
|
|
|
|
|
|
|
} -start
|
|
|
|
|
|
|
|
haproxy h1 -mcli {
|
2024-10-16 16:27:30 +00:00
|
|
|
delay 0.1
|
2020-01-14 14:38:43 +00:00
|
|
|
send "show proc"
|
|
|
|
expect ~ ".*foo.*\n.*bar.*\n"
|
|
|
|
} -wait
|