Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Issue 723403003: Shotdown browser cooperatively with taskill on win platform. (Closed)

Created:
6 years, 1 month ago by nednguyen
Modified:
6 years, 1 month ago
CC:
chromium-reviews, darin-cc_chromium.org, telemetry+watch_chromium.org, jam, piman+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Shotdown browser cooperatively with taskill on win platform. This way makes sure that all the subprocess are also killed. (http://mackeblog.blogspot.com/2012/05/killing-subprocesses-on-windows-in.html) Stress test gpu_process by setting --pageset-repeat=200 (this will be reverted upon submission) BUG=424024

Patch Set 1 : #

Total comments: 2

Patch Set 2 : Address Tony's comment #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+67 lines, -12 lines) Patch
M content/test/gpu/gpu_tests/gpu_process.py View 1 chunk +2 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py View 1 2 chunks +6 lines, -10 lines 0 comments Download
M tools/telemetry/telemetry/core/platform/__init__.py View 1 1 chunk +31 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/core/platform/platform_backend.py View 1 2 chunks +15 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/platform/posix_platform_backend.py View 1 1 chunk +6 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/core/platform/win_platform_backend.py View 2 chunks +7 lines, -0 lines 1 comment Download

Messages

Total messages: 10 (4 generated)
nednguyen
6 years, 1 month ago (2014-11-14 14:22:44 UTC) #2
tonyg
https://codereview.chromium.org/723403003/diff/40001/tools/telemetry/telemetry/core/platform/__init__.py File tools/telemetry/telemetry/core/platform/__init__.py (right): https://codereview.chromium.org/723403003/diff/40001/tools/telemetry/telemetry/core/platform/__init__.py#newcode334 tools/telemetry/telemetry/core/platform/__init__.py:334: def CooperativelyShutdown(self, proc): Should this fit into the *Application() ...
6 years, 1 month ago (2014-11-14 17:10:27 UTC) #6
nednguyen
https://codereview.chromium.org/723403003/diff/40001/tools/telemetry/telemetry/core/platform/__init__.py File tools/telemetry/telemetry/core/platform/__init__.py (right): https://codereview.chromium.org/723403003/diff/40001/tools/telemetry/telemetry/core/platform/__init__.py#newcode334 tools/telemetry/telemetry/core/platform/__init__.py:334: def CooperativelyShutdown(self, proc): On 2014/11/14 17:10:27, tonyg wrote: > ...
6 years, 1 month ago (2014-11-14 17:52:01 UTC) #7
Ken Russell (switch to Gerrit)
not lgtm https://codereview.chromium.org/723403003/diff/60001/tools/telemetry/telemetry/core/platform/win_platform_backend.py File tools/telemetry/telemetry/core/platform/win_platform_backend.py (right): https://codereview.chromium.org/723403003/diff/60001/tools/telemetry/telemetry/core/platform/win_platform_backend.py#newcode371 tools/telemetry/telemetry/core/platform/win_platform_backend.py:371: subprocess.call(['taskkill', '/F', '/T', '/PID', str(proc.pid)]) This is ...
6 years, 1 month ago (2014-11-14 18:51:38 UTC) #8
Ken Russell (switch to Gerrit)
Also note that this approach, for whatever reason, didn't actually fix the problem. http://build.chromium.org/p/tryserver.chromium.gpu/builders/win_gpu_triggered_tests/builds/75241 exhibits ...
6 years, 1 month ago (2014-11-14 18:59:02 UTC) #9
nednguyen
6 years, 1 month ago (2014-11-14 22:09:18 UTC) #10
On 2014/11/14 18:51:38, Ken Russell wrote:
> not lgtm
> 
>
https://codereview.chromium.org/723403003/diff/60001/tools/telemetry/telemetr...
> File tools/telemetry/telemetry/core/platform/win_platform_backend.py (right):
> 
>
https://codereview.chromium.org/723403003/diff/60001/tools/telemetry/telemetr...
> tools/telemetry/telemetry/core/platform/win_platform_backend.py:371:
> subprocess.call(['taskkill', '/F', '/T', '/PID', str(proc.pid)])
> This is far from a cooperative shutdown; it forcibly kills the process tree.
The
> approach in https://codereview.chromium.org/726563003 is much closer to the
how
> the browser shuts down on users' machines. I am continuing to refine that
patch.
> 
> Further, this approach will mask any real bugs in the browser causing
> sub-processes to leak.

I see. I will close this patch.

Powered by Google App Engine
This is Rietveld 408576698