You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
# Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
AUTHOR = "scunningham"
|
|
NAME = "enterprise_LongevityTrackerServer.stratosmedia"
|
|
PURPOSE = "Tracks Chrome OS performance over long periods."
|
|
TIME = "LONG"
|
|
TEST_CATEGORY = "Performance"
|
|
TEST_CLASS = "performance"
|
|
TEST_TYPE = "server"
|
|
ATTRIBUTES = "suite:longevity"
|
|
DEPENDENCIES = "stratosmedia"
|
|
|
|
DOC = """
|
|
This test enrolls ChromeOS device into kiosk mode and captures device resource
|
|
data including cpu and memory usage, and temperature data after the kiosk app
|
|
auto launches.
|
|
"""
|
|
|
|
|
|
def run_test(machine):
|
|
host = hosts.create_host(machine)
|
|
# Kiosk app attributes include app name, extension id and extension page
|
|
kiosk_app_attributes = \
|
|
'stratosmedia:alhlkpgheiefedomljbenmkpconkffhk:index.html'
|
|
job.run_test('enterprise_LongevityTrackerServer', host=host,
|
|
kiosk_app_attributes=kiosk_app_attributes, tag='stratosmedia')
|
|
|
|
|
|
parallel_simple(run_test, machines)
|