• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2019 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 = 'rzakarian'
6NAME = 'policy_DeviceServer.AllowBluetooth_notset'
7TIME = 'SHORT'
8TEST_CATEGORY = 'General'
9TEST_CLASS = 'enterprise'
10TEST_TYPE = 'server'
11# Disable until test can be fixed: http://b/160218741
12# ATTRIBUTES = 'suite:ent-nightly, suite:policy'
13
14DOC = """
15Sets up and runs the client test for the DeviceAllowBluetooth
16policy. If the policy is set to None bluetooth should be available.
17
18"""
19
20client_test = 'policy_DeviceAllowBluetooth'
21case = None
22
23def run(machine):
24    host = hosts.create_host(machine)
25    job.run_test('policy_DeviceServer', host=host,
26                  client_test=client_test, case=case)
27
28parallel_simple(run, machines)
29