RESOLVED FIXED 27923
run-webkit-tests should not invoke "ps" repeatedly on Mac OS X
https://bugs.webkit.org/show_bug.cgi?id=27923
Summary run-webkit-tests should not invoke "ps" repeatedly on Mac OS X
Mark Rowe (bdash)
Reported 2009-08-01 12:46:34 PDT
run-webkit-tests invokes "ps" repeatedly in an attempt to detect whether DumpRenderTree is in the process of crashing but being kept alive while ReportCrash generates a crash log. It's invoked in a manner that spawns a subshell, which makes things even slower.
Attachments
Patch (7.91 KB, patch)
2009-08-01 12:56 PDT, Mark Rowe (bdash)
mrowe: review-
With support for Tiger (11.87 KB, patch)
2009-08-01 18:24 PDT, Mark Rowe (bdash)
ddkilzer: review+
Mark Rowe (bdash)
Comment 1 2009-08-01 12:56:32 PDT
Sam Weinig
Comment 2 2009-08-01 13:01:06 PDT
Comment on attachment 33939 [details] Patch Looks good, one issue below. > +++ b/WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c > @@ -0,0 +1,17 @@ > +#include <sys/sysctl.h> > + > +int processIsCrashing(int pid) > +{ > + int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, pid }; > + struct kinfo_proc info; > + size_t bufferSize = sizeof(info); > + if (sysctl(mib, sizeof(mib) / sizeof(mib[0]), &info, &bufferSize, 0, 0)) { > + perror("sysctl"); > + return 0; > + } > + > + struct extern_proc proc = info.kp_proc; > + > + // The process is crashing if it is waiting to exit, is not a zombie, and has a non-zero exit code. > + return proc.p_stat != SZOMB && (proc.p_flag & P_WEXIT) && proc.p_xstat; > +} This file needs a license. Otherwise, r=me.
Mark Rowe (bdash)
Comment 3 2009-08-01 13:05:37 PDT
Landed in r46676.
Mark Rowe (bdash)
Comment 4 2009-08-01 13:14:04 PDT
Bah, Tiger doesn't have swig.
Mark Rowe (bdash)
Comment 5 2009-08-01 13:14:59 PDT
Rolled out in r46678. Will have to do some thinking to find an approach that works on Tiger too.
Mark Rowe (bdash)
Comment 6 2009-08-01 18:24:10 PDT
Created attachment 33944 [details] With support for Tiger
David Kilzer (:ddkilzer)
Comment 7 2009-08-01 18:33:48 PDT
Comment on attachment 33944 [details] With support for Tiger r=me
David Kilzer (:ddkilzer)
Comment 8 2009-08-01 18:35:31 PDT
(In reply to comment #7) > (From update of attachment 33944 [details]) > r=me WebKitTools/DumpRenderTree/mac/PerlSupport/Makefile needs a license, too.
Mark Rowe (bdash)
Comment 9 2009-08-01 18:41:15 PDT
Landed in r46682.
Note You need to log in before you can comment on or make changes to this bug.