29 lines
864 B
Plaintext
29 lines
864 B
Plaintext
# Copyright 2017 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_ForcedOOBEUpdate.cellular.full"
|
|
PURPOSE = "Test forced update at OOBE."
|
|
TIME = "MEDIUM"
|
|
TEST_CATEGORY = "Functional"
|
|
TEST_CLASS = "platform"
|
|
TEST_TYPE = "server"
|
|
# Disable this test until it can be fixed: https://crbug.com/969207
|
|
# ATTRIBUTES = "suite:cellular_au"
|
|
DOC = """
|
|
This tests the forced autoupdate flow at OOBE using cellular.
|
|
|
|
"""
|
|
|
|
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_ForcedOOBEUpdate', host=host, full_payload=True,
|
|
cellular=True, **args_dict)
|
|
|
|
job.parallel_simple(run, machines)
|