blob: 1cb06b0d2186c3d0cbe8f65f323e957ba7e7c1dc [file] [log] [blame]
# Copyright (c) 2021 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 = "ChromeOS Team"
NAME = "cellular_ValidateTestEnvironment.verizon"
PURPOSE = "Verify that the test setup common to all other tests has no failures."
CRITERIA = """
Check that no errors occur when the setup and tear down of the
base class CellularTestEnvironment is executed multiple times.
"""
ATTRIBUTES = "suite:cellular_ota_flaky"
TIME = "SHORT"
TEST_CATEGORY = "Functional"
TEST_CLASS = "network"
TEST_TYPE = "client"
DEPENDENCIES = "carrier:verizon"
DOC = """
Verify that the test setup common to all other tests has no failures.
"""
from autotest_lib.client.cros.cellular import test_environment
ITERATIONS_PER_TEST=3
test_env = test_environment.CellularTestEnvironment()
job.run_test('cellular_ValidateTestEnvironment',
tag='Base',
test_env=test_env,
iterations=ITERATIONS_PER_TEST)
test_env = test_environment.CellularOTATestEnvironment()
job.run_test('cellular_ValidateTestEnvironment',
tag='OTA',
test_env=test_env,
iterations=ITERATIONS_PER_TEST)