1*9c5db199SXin Li# Copyright 2021 The Chromium OS Authors. All rights reserved. 2*9c5db199SXin Li# Use of this source code is governed by a BSD-style license that can be 3*9c5db199SXin Li# found in the LICENSE file. 4*9c5db199SXin Li 5*9c5db199SXin Li# TEST IS DISABLED UNTIL MIGRATED TO PYTHON 3. 6*9c5db199SXin Li# For instructions on how to: go/tauto-py3-migration 7*9c5db199SXin Li# To re-enable migrate to Python 3. 8*9c5db199SXin Li# If the test is not migrated by 1/14/22 it will be deleted. 9*9c5db199SXin Li 10*9c5db199SXin LiAUTHOR = 'Chrome browser infra team' 11*9c5db199SXin LiNAME = 'chromium' 12*9c5db199SXin LiTIME = 'MEDIUM' 13*9c5db199SXin LiTEST_TYPE = "Server" 14*9c5db199SXin LiPY_VERSION = 3 15*9c5db199SXin Li 16*9c5db199SXin LiMAX_RESULT_SIZE_KB = 256 * 1024 17*9c5db199SXin Li 18*9c5db199SXin LiREQUIRE_SSP = True 19*9c5db199SXin Li 20*9c5db199SXin LiDOC = ''' 21*9c5db199SXin LiInvoke the test executable built by chromium builders. 22*9c5db199SXin Li 23*9c5db199SXin LiThis is a generic wrapper for chromium tests. The test executable and runtime 24*9c5db199SXin Lideps are provisioned by TLS. The wrapper mounts it, kicks off the script and 25*9c5db199SXin Licopies the result to autotest/results. 26*9c5db199SXin Li''' 27*9c5db199SXin Li 28*9c5db199SXin Lidef run(machine): 29*9c5db199SXin Li host=hosts.create_host(machine) 30*9c5db199SXin Li job.run_test('chromium', host=host, args=args) 31*9c5db199SXin Li 32*9c5db199SXin Liparallel_simple(run, machines) 33