If the call count test fails, you'll reasonably want to know what the
network trace looked like, but that information is currently swallowed.
Print it out instead.
Backpatch-through: 18
# to change across OSes and Curl updates, we're likely in trouble if we see
# hundreds or thousands of calls.
$stderr =~ $count_pattern;
- cmp_ok($1, '<', 100, "call count is reasonably small");
+ unless (cmp_ok($1, '<', 100, "call count is reasonably small"))
+ {
+ diag "full stderr:\n$stderr";
+ }
}
# Stress test: make sure our builtin flow operates correctly even if the client