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" 7# stop test from running until it can be fixd: http://go/crb/1104747 8# ATTRIBUTES = "suite:bvt-perbuild" 9TIME = "SHORT" 10TEST_CATEGORY = "Enterprise" 11TEST_CLASS = "enterprise" 12TEST_TYPE = "server" 13JOB_RETRIES = 2 14 15DOC = """ 16This test enrolls a Chrome OS device to online demo mode. 17""" 18 19def run(machine): 20 host = hosts.create_host(machine) 21 job.run_test('enterprise_OnlineDemoMode', host=host) 22 23job.parallel_simple(run, machines) 24