diff --git a/src/test/modules/oauth_validator/t/001_server.pl b/src/test/modules/oauth_validator/t/001_server.pl index c0dafb8be76..95693fcdb18 100644 --- a/src/test/modules/oauth_validator/t/001_server.pl +++ b/src/test/modules/oauth_validator/t/001_server.pl @@ -444,7 +444,10 @@ if (like($stderr, $count_pattern, "call count: count is printed")) # 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