Skip to content

Commit 5ba9507

Browse files
rmacnak-googleCommit Queue
authored andcommitted
[infra] Also kill dartvm, gen_snapshot_product and run_vm_tests after builds and tests.
Change-Id: I970a97b55689216c0e150676400c59aed29e896b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/458461 Commit-Queue: Ryan Macnak <rmacnak@google.com> Reviewed-by: Alexander Aprelev <aam@google.com>
1 parent b963721 commit 5ba9507

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

tools/task_kill.py

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@
2525
'win32': {
2626
'chrome': 'chrome.exe',
2727
'crashpad_handler': 'crashpad_handler.exe',
28-
'dart': 'dart.exe',\
29-
'dart_product': 'dart_product.exe',
28+
'dart': 'dart.exe',
29+
'dartvm': 'dartvm.exe',
3030
'dartaotruntime': 'dartaotruntime.exe',
3131
'dartaotruntime_product': 'dartaotruntime_product.exe',
3232
'firefox': 'firefox.exe',
3333
'gen_snapshot': 'gen_snapshot.exe',
34+
'gen_snapshot_product': 'gen_snapshot_product.exe',
35+
'run_vm_tests': 'run_vm_tests.exe',
3436
'git': 'git.exe',
3537
'iexplore': 'iexplore.exe',
3638
'vctip': 'vctip.exe',
@@ -39,23 +41,27 @@
3941
'linux': {
4042
'chrome': 'chrome',
4143
'dart': 'dart',
42-
'dart_product': 'dart_product',
44+
'dartvm': 'dartvm',
4345
'dartaotruntime': 'dartaotruntime',
4446
'dartaotruntime_product': 'dartaotruntime_product',
4547
'firefox': 'firefox',
4648
'gen_snapshot': 'gen_snapshot',
49+
'gen_snapshot_product': 'gen_snapshot_product',
50+
'run_vm_tests': 'run_vm_tests',
4751
'flutter_tester': 'flutter_tester',
4852
'git': 'git',
4953
},
5054
'macos': {
5155
'chrome': 'Chrome',
5256
'chrome_helper': 'Chrome Helper',
5357
'dart': 'dart',
54-
'dart_product': 'dart_product',
58+
'dartvm': 'dartvm',
5559
'dartaotruntime': 'dartaotruntime',
5660
'dartaotruntime_product': 'dartaotruntime_product',
5761
'firefox': 'firefox',
5862
'gen_snapshot': 'gen_snapshot',
63+
'gen_snapshot_product': 'gen_snapshot_product',
64+
'run_vm_tests': 'run_vm_tests',
5965
'git': 'git',
6066
'safari': 'Safari',
6167
}
@@ -274,9 +280,12 @@ def KillVSBuild():
274280

275281
def KillDart():
276282
status = Kill("dart", dump_stacks=True)
283+
status += Kill("dartvm", dump_stacks=True)
277284
status += Kill("gen_snapshot", dump_stacks=True)
285+
status += Kill("gen_snapshot_product", dump_stacks=True)
278286
status += Kill("dartaotruntime", dump_stacks=True)
279287
status += Kill("dartaotruntime_product", dump_stacks=True)
288+
status += Kill("run_vm_tests", dump_stacks=True)
280289
status += Kill("flutter_tester", dump_stacks=True)
281290
status += Kill("crashpad_handler", dump_stacks=True)
282291
return status

0 commit comments

Comments
 (0)