xref: /aosp_15_r20/external/autotest/client/site_tests/cellular_StressEnable/control.pseudomodem (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright (c) 2013 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_StressEnable.pseudomodem"
7PURPOSE = "Stress-test Connman enable/disable"
8CRITERIA = """
9This test fails if flimflam ever fails to respond to a DBus message or crashes.
10"""
11TIME = "SHORT"
12TEST_CATEGORY = "Stress"
13TEST_CLASS = "network"
14TEST_TYPE = "client"
15PY_VERSION = 3
16
17DOC = """
18  Stress-tests enabling and disabling a technology at short intervals.
19"""
20
21from autotest_lib.client.cros.cellular import test_environment
22
23# 3GPP
24test_env = test_environment.CellularPseudoMMTestEnvironment(
25        pseudomm_args=({'family': '3GPP'},))
26job.run_test('cellular_StressEnable', tag='pseudomodem_3GPP',
27             test_env=test_env)
28
29# CDMA
30test_env = test_environment.CellularPseudoMMTestEnvironment(
31        pseudomm_args=({'family': 'CDMA'},))
32job.run_test('cellular_StressEnable', tag='pseudomodem_CDMA',
33             test_env=test_env)
34