2018-06-20 01:26:44 -04:00
|
|
|
# commit 84c844eb12b250aa86f2aadaff77c42dfc3cb619
|
|
|
|
|
# BUG/MINOR: spoe: Initialize variables used during conf parsing before any check
|
|
|
|
|
#
|
|
|
|
|
# Some initializations must be done at the beginning of parse_spoe_flt to avoid
|
2020-03-10 03:06:11 -04:00
|
|
|
# segmentation fault when first errors are caught, when the "filter spoe" line is
|
2018-06-20 01:26:44 -04:00
|
|
|
# parsed.
|
|
|
|
|
|
2019-03-29 10:07:24 -04:00
|
|
|
#REGTEST_TYPE=bug
|
|
|
|
|
|
2018-06-20 01:26:44 -04:00
|
|
|
varnishtest "SPOE bug: missing configuration file"
|
|
|
|
|
|
2018-08-21 09:29:24 -04:00
|
|
|
feature ignore_unknown_macro
|
|
|
|
|
|
2024-11-19 10:51:30 -05:00
|
|
|
haproxy h1 -conf-BAD {} {
|
2025-06-30 12:44:07 -04:00
|
|
|
global
|
|
|
|
|
.if feature(THREAD)
|
|
|
|
|
thread-groups 1
|
|
|
|
|
.endif
|
|
|
|
|
|
2018-06-20 01:26:44 -04:00
|
|
|
defaults
|
2021-11-18 11:46:22 -05:00
|
|
|
timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
|
|
|
timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
|
|
|
timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
|
2018-06-20 01:26:44 -04:00
|
|
|
|
|
|
|
|
frontend my-front
|
|
|
|
|
filter spoe
|
|
|
|
|
}
|