• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2014 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 = 'harpreet, krisr, wiley'
6TIME = 'SHORT'
7NAME = 'network_WiFi_ChromeEndToEnd.findVerifyWiFiNetworks'
8TEST_TYPE = 'Server'
9ATTRIBUTES = ('suite:wifi_endtoend, suite:wifi_matfunc_bcm4371, '
10              'suite:wifi_release')
11SUITE = 'wifi_endtoend, wifi_matfunc_bcm4371, wifi_release'
12DEPENDENCIES = 'wificell'
13
14DOC = """
15WiFi_ChromeEndToEnd test configures two APs and runs the client side
16network_ChromeWifiEndToEnd test to find and validate wifi networks
17in range via Chrome.
18"""
19
20def run(machine):
21    host = hosts.create_host(machine)
22    job.run_test('network_WiFi_ChromeEndToEnd',
23                 host=host,
24                 raw_cmdline_args=args,
25                 test='findVerifyWiFiNetworks')
26
27
28parallel_simple(run, machines)
29