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 = "wzang"
6NAME = "enterprise_OnlineDemoMode"
7ATTRIBUTES = "suite:bvt-perbuild"
8TIME = "SHORT"
9TEST_CATEGORY = "Enterprise"
10TEST_CLASS = "enterprise"
11TEST_TYPE = "server"
12JOB_RETRIES = 2
13
14DOC = """
15This test enrolls a Chrome OS device to online demo mode.
16"""
17
18def run(machine):
19    host = hosts.create_host(machine)
20    job.run_test('enterprise_OnlineDemoMode', host=host)
21
22job.parallel_simple(run, machines)
23