It should be possible to dump test output to stderr with a single line at the top of the file. This will be useful in debugging test timeouts.
<rdar://problem/22347806>
Created attachment 259417 [details] Patch
Comment on attachment 259417 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259417&action=review r=me > Source/WebCore/inspector/InspectorFrontendHost.cpp:311 > - WTFLogAlways("InspectorTest: %s", message.utf8().data()); > + WTFLogAlways("%s", message.utf8().data()); It is often nice to have something to grep for, perhaps here you are thinking just use the process name / pid in output?
Committed r188687: <http://trac.webkit.org/changeset/188687>