Commit bc618978 authored by Michael Achenbach's avatar Michael Achenbach Committed by V8 LUCI CQ

[test] Temporarily print errors when fetching process list

Bug: v8:13101
Change-Id: I1fbcfd5758e3fb739b79c7d381e62b380cd14a2c
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3784227Reviewed-by: 's avatarLiviu Rau <liviurau@chromium.org>
Auto-Submit: Michael Achenbach <machenbach@chromium.org>
Commit-Queue: Liviu Rau <liviurau@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/main@{#81935}
parent 5a716edd
......@@ -29,7 +29,10 @@ def list_processes_linux():
]
# Filter strange process with name as out dir.
return [p for p in processes if p[1] != OUT_DIR]
except:
except Exception as e:
# TODO(https://crbug.com/v8/13101): Remove after investigation.
print('Fetching process list failed.')
print(e)
return []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment