Home | History | Annotate | Download | only in enterprise_CFM_Perf
      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 
      5 from autotest_lib.server import utils
      6 
      7 AUTHOR = "dtosic (a] chromium.org"
      8 NAME = "enterprise_CFM_Perf.meet_app"
      9 TIME = "MEDIUM"
     10 TEST_CATEGORY = "Performance"
     11 TEST_CLASS = "enterprise"
     12 ATTRIBUTES = "suite:bluestreak, suite:bluestreak-perbuild"
     13 DEPENDENCIES = "meet_app"
     14 TEST_TYPE = "server"
     15 JOB_RETRIES = 3
     16 
     17 DOC = """
     18 This test enrolls a ChromeOS device in to hotrod mode running the meet app
     19 and captures device usage data including cpu, memory, temperature and JMI
     20 logs and uploads it to Google Cloud Storage as part of the test logs.
     21 """
     22 
     23 args_dict = utils.args_to_dict(args)
     24 servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
     25 
     26 def run_test(machine):
     27     host = hosts.create_host(machine, servo_args=servo_args)
     28     job.run_test('enterprise_CFM_Perf', host=host, is_meeting=True,
     29                  tag='meet_app')
     30 
     31 parallel_simple(run_test, machines)
     32 
     33