1# Copyright 2017 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 5from autotest_lib.server import utils 6 7AUTHOR = "dtosic@chromium.org" 8NAME = "enterprise_CFM_Perf.meet_app" 9TIME = "MEDIUM" 10TEST_CATEGORY = "Performance" 11TEST_CLASS = "enterprise" 12TEST_TYPE = "server" 13JOB_RETRIES = 3 14 15DOC = """ 16This test enrolls a ChromeOS device in to hotrod mode running the meet app 17and captures device usage data including cpu, memory, temperature and JMI 18logs and uploads it to Google Cloud Storage as part of the test logs. 19""" 20 21def run_test(machine): 22 host = hosts.create_host(machine) 23 job.run_test('enterprise_CFM_Perf', host=host, tag='meet_app') 24 25parallel_simple(run_test, machines) 26