aboutsummaryrefslogtreecommitdiff
path: root/server/site_tests/policy_WiFiTypesServer/control.open
diff options
context:
space:
mode:
Diffstat (limited to 'server/site_tests/policy_WiFiTypesServer/control.open')
-rw-r--r--server/site_tests/policy_WiFiTypesServer/control.open35
1 files changed, 0 insertions, 35 deletions
diff --git a/server/site_tests/policy_WiFiTypesServer/control.open b/server/site_tests/policy_WiFiTypesServer/control.open
deleted file mode 100644
index ac6f50ac7e..0000000000
--- a/server/site_tests/policy_WiFiTypesServer/control.open
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2018 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-AUTHOR = 'timkovich'
-TIME = 'SHORT'
-NAME = 'policy_WiFiTypesServer.open'
-TEST_TYPE = 'Server'
-ATTRIBUTES = 'suite:ent-wificell'
-DEPENDENCIES = 'wificell'
-
-DOC = """
-'policy_WiFiTypesServer.open' test configures an open network and runs the
-client side 'policy_WiFiTypes' test that sets the user network policy and
-attempts to connect.
-
-"""
-
-from autotest_lib.client.cros.enterprise.network_config import NetworkConfig
-from autotest_lib.server.cros.network import hostap_config
-
-def run(machine):
- n_mode = hostap_config.HostapConfig.MODE_11N_MIXED
- ap_config = hostap_config.HostapConfig(channel=6, mode=n_mode)
- network = NetworkConfig()
-
- host = hosts.create_host(machine)
- job.run_test('policy_WiFiTypesServer',
- raw_cmdline_args=args,
- host=host,
- ap_config=ap_config,
- network=network)
-
-
-parallel_simple(run, machines)