On Sun, Mar 20, 2016 at 1:07 PM, Rainer Jung <rainer.jung at kippdata.de> wrote: > Am 20.03.2016 um 03:07 schrieb Jeffrey Walton: >> >> Hi Everyone, >> >> I'm working with OpenSSL 1.1.0. I think I'm seeing a hang in: >> >> ../test/recipes/80-test_ssl.t ............. {5|6}/47 >> >> It seems like its timing out, and then the tests march on with: >> >> ../test/recipes/80-test_ssl.t ............. ok >> >> I tried to get a verbose output with 'make test V=1', but it was a >> guess that did not work. >> >> How can I get verbose output from 'make test'? > > > Te INSTALL file tells us: > > HARNESS_VERBOSE=yes make test Ah, thanks. There's a few build systems that can hide output from users; for example, kbuild, cmake and autotools. Usually the way to enable the output is "V=1" (kbuild and autotools) and "VERBOSE=1" (cmake). Perhpas something more standard should be used to keep the questions/noise to a minimum. Or maybe, use both the OpenSSL way and the other ways for minimum disruption to current workflows. Jeff