1# Copyright 2021 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# TEST IS DISABLED UNTIL MIGRATED TO PYTHON 3. 6# For instructions on how to: go/tauto-py3-migration 7# To re-enable migrate to Python 3. 8# If the test is not migrated by 1/14/22 it will be deleted. 9 10AUTHOR = 'Chrome browser infra team' 11NAME = 'chromium' 12TIME = 'MEDIUM' 13TEST_TYPE = "Server" 14PY_VERSION = 3 15 16MAX_RESULT_SIZE_KB = 256 * 1024 17 18REQUIRE_SSP = True 19 20DOC = ''' 21Invoke the test executable built by chromium builders. 22 23This is a generic wrapper for chromium tests. The test executable and runtime 24deps are provisioned by TLS. The wrapper mounts it, kicks off the script and 25copies the result to autotest/results. 26''' 27 28def run(machine): 29 host=hosts.create_host(machine) 30 job.run_test('chromium', host=host, args=args) 31 32parallel_simple(run, machines) 33