xref: /aosp_15_r20/external/autotest/client/site_tests/cellular_SafetyDance/control.amarisoft (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright 2022 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5AUTHOR = "ChromeOS Team"
6NAME = "cellular_SafetyDance.amarisoft"
7PURPOSE = "Stress-test all common 3G/4G operations."
8CRITERIA = """
9This test will fail if any DBus call times out or flimflam crashes.
10"""
11ATTRIBUTES = "suite:cellular_ota_flaky"
12TIME = "SHORT"
13TEST_CATEGORY = "Stress"
14TEST_CLASS = "network"
15TEST_TYPE = "client"
16DEPENDENCIES = "carrier:amarisoft"
17PY_VERSION = 3
18
19DOC = """
20  Stress-tests all common 3G/4G operations.
21
22  This test runs a long series of 3G/4G operations in pseudorandom order. All of
23  these 3G/4G operations must return a convincing result (EINPROGRESS or no error).
24"""
25
26from autotest_lib.client.cros.cellular import test_environment
27
28test_env = test_environment.CellularOTATestEnvironment()
29job.run_test('cellular_SafetyDance', test_env=test_env)
30