27 lines
856 B
Plaintext
27 lines
856 B
Plaintext
# 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_enabled.full"
|
|
PURPOSE = "Tests second update attempt fails if backoff is enabled."
|
|
TIME = "MEDIUM"
|
|
TEST_CATEGORY = "Functional"
|
|
TEST_CLASS = "platform"
|
|
TEST_TYPE = "server"
|
|
ATTRIBUTES = "suite:au-perbuild"
|
|
DOC = """
|
|
Test we cannot update when we fail the first attempt and backoff is enabled.
|
|
"""
|
|
|
|
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=True, **args_dict)
|
|
|
|
job.parallel_simple(run, machines)
|