[Webkit-unassigned] [Bug 30869] commit-queue keeps crashing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Oct 30 14:33:19 PDT 2009


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





--- Comment #9 from Eric Seidel <eric at webkit.org>  2009-10-30 14:33:15 PDT ---
I wrote a function:

def check_for_file_leak(message):
    log("before %s" % message)
    lsof_output = SCM.run_command(['lsof', '-p', str(os.getpid())])
    if lsof_output.count('HIToolbox'):
        log(message)
        error(lsof_output)
    log("after %s" % message)

and sprinkled it throughout the code.

It seems these 3 leaking files are opened by mechanize during:

self.browser = Browser()

in Bugzilla.__init__()

I've not tried to trace through the mechanize code to see where the leaks come
from.

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