blob: d31e23d06a0b1c756c4315c50ad689ecdd903e07 [file] [log] [blame]
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
AUTHOR = "dhaddock, Chromium OS"
NAME = "autoupdate_OmahaResponse.backoff_disabled.full"
TIME = "MEDIUM"
PURPOSE = "Tests second update attempt succeeds if backoff is disabled."
TEST_CATEGORY = "Functional"
TEST_CLASS = "platform"
TEST_TYPE = "server"
ATTRIBUTES = "suite:au-perbuild"
DOC = """
Test we can update when we fail the first attempt and backoff is disabled.
"""
from autotest_lib.client.common_lib import utils
args_dict = utils.args_to_dict(args)
def run(machine):
host = hosts.create_host(machine)
job.run_test('autoupdate_OmahaResponse', host=host, full_payload=True,
test_backoff=True, backoff=False, **args_dict)
job.parallel_simple(run, machines)