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" 12ATTRIBUTES = "suite:hotrod" 13DEPENDENCIES = "meet_app" 14TEST_TYPE = "server" 15JOB_RETRIES = 3 16 17DOC = """ 18This test enrolls a ChromeOS device in to hotrod mode running the meet app 19and captures device usage data including cpu, memory, temperature and JMI 20logs and uploads it to Google Cloud Storage as part of the test logs. 21""" 22 23def run_test(machine): 24 host = hosts.create_host(machine) 25 job.run_test('enterprise_CFM_Perf', host=host, tag='meet_app') 26 27parallel_simple(run_test, machines) 28