Commit 1ff06cdf authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[test] Fix running Android commands

The contructor arguments were omitted for Android in a previous
CL, which broke the Android builder.

TBR=tmrts@chromium.org

Bug: v8:8292
Change-Id: I266826e2531ba421161d6cd2241eae34b07e7521
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2007494Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65839}
parent 2ce64d53
...@@ -243,7 +243,7 @@ class AndroidCommand(BaseCommand): ...@@ -243,7 +243,7 @@ class AndroidCommand(BaseCommand):
driver = None driver = None
def __init__(self, shell, args=None, cmd_prefix=None, timeout=60, env=None, def __init__(self, shell, args=None, cmd_prefix=None, timeout=60, env=None,
verbose=False, resources_func=None): verbose=False, resources_func=None, handle_sigterm=False):
"""Initialize the command and all files that need to be pushed to the """Initialize the command and all files that need to be pushed to the
Android device. Android device.
""" """
...@@ -264,7 +264,7 @@ class AndroidCommand(BaseCommand): ...@@ -264,7 +264,7 @@ class AndroidCommand(BaseCommand):
super(AndroidCommand, self).__init__( super(AndroidCommand, self).__init__(
shell, args=rel_args, cmd_prefix=cmd_prefix, timeout=timeout, env=env, shell, args=rel_args, cmd_prefix=cmd_prefix, timeout=timeout, env=env,
verbose=verbose) verbose=verbose, handle_sigterm=handle_sigterm)
def execute(self, **additional_popen_kwargs): def execute(self, **additional_popen_kwargs):
"""Execute the command on the device. """Execute the command on the device.
......
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