Home | History | Annotate | Download | only in network_MobileSuspendResume
      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 
      5 AUTHOR = "ChromeOS Team"
      6 NAME = "network_MobileSuspendResume.wimax"
      7 PURPOSE = "Test wimax device state after suspend/resume"
      8 CRITERIA = """
      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 """
     14 TIME = "SHORT"
     15 TEST_CATEGORY = "Functional"
     16 TEST_CLASS = "network"
     17 TEST_TYPE = "client"
     18 
     19 DOC = """
     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
     25 job.run_test('network_MobileSuspendResume', autoconnect=False,
     26              tag='autoconnect_off-wimax', device_type='wimax')
     27 job.run_test('network_MobileSuspendResume', autoconnect=True,
     28              tag='autoconnect_on-wimax', device_type='wimax')
     29