mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-12 06:24:56 +00:00
dc1a3bd999
This patch replaces LEVEL variable by REGTESTS_TYPES variable which is more mnemonic and human readable. It is uses as a filter to run the reg tests scripts where a commented #REGTEST_TYPE may be defined to designate their types. Running the following command: $ REGTESTS_TYPES=slow,default will start all the reg tests where REGTEST_TYPE is defines as 'slow' or 'default'. Note that 'default' is also the default value of REGTEST_TYPE when not specified dedicated to run all the current h*.vtc files. When REGTESTS_TYPES is not specified there is no filter at all. All the tests are run. This patches also defines REGTEST_TYPE with 'slow' value for all the s*.vtc files, 'bug' value for al the b*.vtc files, 'broken' value for all the k*.vtc files.
23 lines
573 B
Plaintext
23 lines
573 B
Plaintext
# 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
|
|
# segmentaion fault when first errors are catched, when the "filter spoe" line is
|
|
# parsed.
|
|
|
|
#REGTEST_TYPE=bug
|
|
|
|
varnishtest "SPOE bug: missing configuration file"
|
|
|
|
feature ignore_unknown_macro
|
|
|
|
haproxy h1 -conf-BAD {} {
|
|
defaults
|
|
timeout connect 5000ms
|
|
timeout client 50000ms
|
|
timeout server 50000ms
|
|
|
|
frontend my-front
|
|
filter spoe
|
|
}
|