mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-18 01:14:38 +00:00
6f746af915
Every reg-test now runs without any warning, so let's acivate -dW by
default so the new ones will inheritate the option.
This patch reverts 9d511b3c
("REGTESTS: enable -dW on almost all tests
to fail on warnings") and adds -dW in the default HAPROXY_ARGS of
scripts/run-regtests.sh instead.
15 lines
279 B
Plaintext
15 lines
279 B
Plaintext
varnishtest "Verifies the absence of (null) in 'show stats' header"
|
|
|
|
# This can happen if a new ST_I_PX_xxx enum is added without updating
|
|
# stats_fields[].
|
|
|
|
feature ignore_unknown_macro
|
|
|
|
haproxy h1 -conf {
|
|
} -start
|
|
|
|
haproxy h1 -cli {
|
|
send "show stat"
|
|
expect !~ (null)
|
|
}
|