mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05:00
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.
14 lines
279 B
Text
14 lines
279 B
Text
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)
|
|
}
|