[Webkit-unassigned] [Bug 82652] If TestWebKitAPI fails/crashes with "Failed to build list of tests!", the run is reported as successful

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 29 17:25:04 PDT 2012


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





--- Comment #3 from Stephanie Lewis <slewis at apple.com>  2012-03-29 17:25:04 PST ---
Turns out this is the same crashing issue as <rdar://problem/10944309> CrashTracer: [USER] 111 crashes in WebProcess at WebKitTestRunnerInjectedBundle: WTR::InjectedBundle::done + 142.

gtest uses a std::stringstream which at some point call stringstream::str() which allocates a new string with fastMalloc and deallocates with system free.

Unfortunately, making gtest not using the c std library is not a useful option.  I am curious why gtest needs to include fastMalloc and wtf stuff to start with.  If we could remove any internal headers from gtest and TestWebKitAPI we should be able to fix the bug that way.

Another temporary fix would be to go back to the GNU std library.

-- 
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