32 lines
986 B
Plaintext
32 lines
986 B
Plaintext
# Copyright 2018 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.
|
|
|
|
from autotest_lib.server import utils
|
|
|
|
AUTHOR = "chromeos-chameleon"
|
|
NAME = "graphics_MultipleDisplays.aquarium_blob"
|
|
PURPOSE = "Test multiple WebGL windows on internal and external displays."
|
|
CRITERIA = "All tests must not crash/hang the GPU."
|
|
ATTRIBUTES = ""
|
|
TIME = "MEDIUM"
|
|
TEST_CATEGORY = "Functional"
|
|
TEST_CLASS = "graphics"
|
|
TEST_TYPE = "server"
|
|
DEPENDENCIES = 'chameleon'
|
|
|
|
DOC = """
|
|
This test runs four WebGL samples. Two on the internal display. Two on the
|
|
extended Chameleon display.
|
|
"""
|
|
|
|
args_dict = utils.args_to_dict(args)
|
|
chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict)
|
|
|
|
def run(machine):
|
|
host = hosts.create_host(machine, chameleon_args=chameleon_args)
|
|
job.run_test("graphics_MultipleDisplays", host=host,
|
|
subtest='aquarium+blob')
|
|
|
|
parallel_simple(run, machines)
|