Commit c45bc57d authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[test] Temporary debug output for hanging tests

TBR=sigurds@chromium.org,sergiyb@chromium.org

Bug: v8:8292
Change-Id: Ic03e2884ef645231807762f6b0210e69c5f9ac74
Reviewed-on: https://chromium-review.googlesource.com/c/1282604
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#56674}
parent 1df203a2
...@@ -2,7 +2,9 @@ ...@@ -2,7 +2,9 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
import platform
import signal import signal
import subprocess
from . import base from . import base
from testrunner.local import utils from testrunner.local import utils
...@@ -29,3 +31,8 @@ class SignalProc(base.TestProcObserver): ...@@ -29,3 +31,8 @@ class SignalProc(base.TestProcObserver):
print '>>> SIGTERM received, early abort...' print '>>> SIGTERM received, early abort...'
self.exit_code = utils.EXIT_CODE_TERMINATED self.exit_code = utils.EXIT_CODE_TERMINATED
self.stop() self.stop()
# TODO(machenbach): Remove temporary output after investigating:
# https://crbug.com/v8/8292
if platform.system() == 'Linux':
subprocess.call('ps -aux | grep d8', shell=True)
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