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 = "abergman, chromeos-engprod-platform-syd" 11NAME = "platform_PerfCujFetchCloudConfig" 12ATTRIBUTES = "suite:performance_cuj, suite:performance_cuj_quick, suite:performance_cuj_experimental" 13TIME = "SHORT" 14TEST_CATEGORY = "Stress" 15TEST_CLASS = "platform" 16TEST_TYPE = "server" 17PRIORITY = 6000 18 19DOC = """ 20This test file doesn't run any actual stress, but rather loads a fresh copy of 21the performance CUJ config from the cloud. 22 23This test has higher priority than any test of the suite, to ensure it's running 24first and always overrides cached configuration with the cloud one. 25""" 26 27def run(machine): 28 host = hosts.create_host(machine) 29 job.run_test('platform_FetchCloudConfig', host=host, disable_sysinfo=True) 30 31parallel_simple(run, machines) 32