Skip to content

Commit 9acd26e

Browse files
alexmarkovCommit Queue
authored andcommitted
Kill hanging dartaotruntime_product processes on the bots
This should fix errors: lld-link: error: failed to write output './dartaotruntime_product.exe': permission denied Change-Id: I29be76190d3ed254dfa8ce18f08d7a4dbde4106c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/403080 Commit-Queue: Alexander Aprelev <[email protected]> Commit-Queue: Alexander Markov <[email protected]> Auto-Submit: Alexander Markov <[email protected]> Reviewed-by: Alexander Aprelev <[email protected]>
1 parent 528db85 commit 9acd26e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/task_kill.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
'crashpad_handler': 'crashpad_handler.exe',
2828
'dart': 'dart.exe',
2929
'dartaotruntime': 'dartaotruntime.exe',
30+
'dartaotruntime_product': 'dartaotruntime_product.exe',
3031
'firefox': 'firefox.exe',
3132
'gen_snapshot': 'gen_snapshot.exe',
3233
'git': 'git.exe',
@@ -38,6 +39,7 @@
3839
'chrome': 'chrome',
3940
'dart': 'dart',
4041
'dartaotruntime': 'dartaotruntime',
42+
'dartaotruntime_product': 'dartaotruntime_product',
4143
'firefox': 'firefox',
4244
'gen_snapshot': 'gen_snapshot',
4345
'flutter_tester': 'flutter_tester',
@@ -48,6 +50,7 @@
4850
'chrome_helper': 'Chrome Helper',
4951
'dart': 'dart',
5052
'dartaotruntime': 'dartaotruntime',
53+
'dartaotruntime_product': 'dartaotruntime_product',
5154
'firefox': 'firefox',
5255
'gen_snapshot': 'gen_snapshot',
5356
'git': 'git',
@@ -259,6 +262,7 @@ def KillDart():
259262
status = Kill("dart", dump_stacks=True)
260263
status += Kill("gen_snapshot", dump_stacks=True)
261264
status += Kill("dartaotruntime", dump_stacks=True)
265+
status += Kill("dartaotruntime_product", dump_stacks=True)
262266
status += Kill("flutter_tester", dump_stacks=True)
263267
status += Kill("crashpad_handler", dump_stacks=True)
264268
return status

0 commit comments

Comments
 (0)