xref: /aosp_15_r20/external/autotest/server/site_tests/platform_FetchCloudConfig/control (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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
5AUTHOR = "abergman, chromeos-engprod-platform-syd"
6NAME = "platform_FetchCloudConfig"
7TIME = "SHORT"
8TEST_CATEGORY = "Stress"
9TEST_CLASS = "platform"
10TEST_TYPE = "server"
11
12DOC = """
13This test doesn't run any actual tests, but rather loads a fresh copy of the
14performance CUJ config from the cloud.
15
16This test is supposed to run in the beginning of performance CUJ test suite, to
17ensure it always overrides cached configuration with the fresh one.
18"""
19
20def run(machine):
21    host = hosts.create_host(machine)
22    job.run_test('platform_FetchCloudConfig', host=host, disable_sysinfo=True)
23
24parallel_simple(run, machines)
25