RESOLVED FIXED 175735
Fix leak-checking for iOS Simulators
https://bugs.webkit.org/show_bug.cgi?id=175735
Summary Fix leak-checking for iOS Simulators
Jonathan Bedard
Reported 2017-08-18 13:45:23 PDT
We can't check leaks for iOS Simulators since we close the process before we check for leaks.
Attachments
Patch (2.80 KB, patch)
2017-08-18 13:49 PDT, Jonathan Bedard
no flags
Patch (1.63 KB, patch)
2017-08-21 17:13 PDT, Jonathan Bedard
no flags
Patch (2.08 KB, patch)
2017-08-21 17:43 PDT, Jonathan Bedard
no flags
Patch for landing (1.97 KB, patch)
2017-08-22 08:05 PDT, Jonathan Bedard
no flags
Jonathan Bedard
Comment 1 2017-08-18 13:49:07 PDT
WebKit Commit Bot
Comment 2 2017-08-18 16:26:43 PDT
Comment on attachment 318537 [details] Patch Clearing flags on attachment: 318537 Committed r220942: <http://trac.webkit.org/changeset/220942>
WebKit Commit Bot
Comment 3 2017-08-18 16:26:45 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 4 2017-08-18 16:27:29 PDT
Jonathan Bedard
Comment 5 2017-08-21 17:13:04 PDT
Reopening to attach new patch.
Jonathan Bedard
Comment 6 2017-08-21 17:13:05 PDT
Jonathan Bedard
Comment 7 2017-08-21 17:43:55 PDT
David Kilzer (:ddkilzer)
Comment 8 2017-08-21 19:18:29 PDT
Comment on attachment 318709 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=318709&action=review r=me > Tools/Scripts/webkitpy/port/server_process.py:377 > # read any remaining data on the pipes and return it. > if not killed: > - if self._use_win32_apis: > + if self._use_win32_apis and self._proc: > self._wait_for_data_and_update_buffers_using_win32_apis(now) > - else: > + elif self._proc: > self._wait_for_data_and_update_buffers_using_select(now, stopping=True) Can you move the check for self._proc here? if not killed and self._proc:
Jonathan Bedard
Comment 9 2017-08-22 08:05:28 PDT
(In reply to David Kilzer (:ddkilzer) from comment #8) > Comment on attachment 318709 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=318709&action=review > > r=me > > > Tools/Scripts/webkitpy/port/server_process.py:377 > > # read any remaining data on the pipes and return it. > > if not killed: > > - if self._use_win32_apis: > > + if self._use_win32_apis and self._proc: > > self._wait_for_data_and_update_buffers_using_win32_apis(now) > > - else: > > + elif self._proc: > > self._wait_for_data_and_update_buffers_using_select(now, stopping=True) > > Can you move the check for self._proc here? > > if not killed and self._proc: Good point. Making that change.
Jonathan Bedard
Comment 10 2017-08-22 08:05:42 PDT
Created attachment 318757 [details] Patch for landing
WebKit Commit Bot
Comment 11 2017-08-22 08:46:33 PDT
Comment on attachment 318757 [details] Patch for landing Clearing flags on attachment: 318757 Committed r221011: <http://trac.webkit.org/changeset/221011>
WebKit Commit Bot
Comment 12 2017-08-22 08:46:35 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.