• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2012 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 = "network_MobileSuspendResume.wimax"
7PURPOSE = "Test wimax device state after suspend/resume"
8CRITERIA = """
9    Check the wimax state of the device after suspend and resume.  Verify
10    that wimax can be enabled under all situations after resuming of device.
11    Verify that if autoconnect is turned on that the device autoconnects
12    after resuming.
13"""
14TIME = "SHORT"
15TEST_CATEGORY = "Functional"
16TEST_CLASS = "network"
17TEST_TYPE = "client"
18
19DOC = """
20    Verify that the wimax device can be enabled under all suspend/resume
21    situations.
22"""
23
24# Run all scenarios twice, first with autoconnect off, then with it on
25job.run_test('network_MobileSuspendResume', autoconnect=False,
26             tag='autoconnect_off-wimax', device_type='wimax')
27job.run_test('network_MobileSuspendResume', autoconnect=True,
28             tag='autoconnect_on-wimax', device_type='wimax')
29