[Webkit-unassigned] [Bug 37987] [chromium] new-run-webkit-tests hangs on OS X 10.5.8

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Apr 22 12:54:22 PDT 2010


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





--- Comment #2 from Eric Seidel <eric at webkit.org>  2010-04-22 12:54:20 PST ---
OK.  I'm not able to reproduce this (yet).

Someone who is, please add the following code to your copy (any file that gets
run is fine):

import signal
import threading
import traceback
def dumpstacks(signal, frame):
    code = []
    for threadId, stack in sys._current_frames().items():
        code.append("\n# Thread: %d" % threadId)
        for filename, lineno, name, line in traceback.extract_stack(stack):
            code.append('File: "%s", line %d, in %s' % (filename, lineno,
name))
            if line:
                code.append("  %s" % (line.strip()))
    print "\n".join(code)

signal.signal(signal.SIGQUIT, dumpstacks)

and then use:

kill -QUIT PROCESS_ID

And attach the dump of the stacks to this bug.  Once we have that information,
we can solve this.

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