mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
15 lines
276 B
Text
15 lines
276 B
Text
|
|
varnishtest "Verifies the absence of (null) in 'show stats' header"
|
||
|
|
|
||
|
|
# This can happen if a new ST_F_xxx enum is added without updating
|
||
|
|
# stats_fields[].
|
||
|
|
|
||
|
|
feature ignore_unknown_macro
|
||
|
|
|
||
|
|
haproxy h1 -conf {
|
||
|
|
} -start
|
||
|
|
|
||
|
|
haproxy h1 -cli {
|
||
|
|
send "show stat"
|
||
|
|
expect !~ (null)
|
||
|
|
}
|