haproxy/reg-tests/webstats/missing-stats-fields.vtc
William Lallemand 6f746af915 REGTESTS: use -dW by default on every reg-tests
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.
2024-11-19 16:53:10 +01:00

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)
}