[Webkit-unassigned] [Bug 15743] run-webkit-tests hangs when WebCore tries to log too much

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 18 09:18:35 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=15743





--- Comment #7 from David Kilzer (ddkilzer) <ddkilzer at webkit.org>  2009-08-18 09:18:34 PDT ---
(In reply to comment #6)
> It's an interesting strategy to read a line of STDERR with a line of STDOUT
> from DumpRenderTree, but what guarantees that all of STDERR is read before
> going to the next test?  Would reading all STDERR each time work as well?
> 
>     my $lineError = <$fhError>;

Of course, that should be:

    my @lineError = <$fhError>;

Other uses of $lineError would then have to be updated to use @lineError
instead.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list