xref: /aosp_15_r20/external/autotest/server/site_tests/platform_UReadAheadServer/control (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright (c) 2013 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
5NAME = "platform_UReadAheadServer"
6AUTHOR = "ChromeOS Team"
7TIME = "SHORT"
8TEST_CLASS = "platform"
9TEST_TYPE = "server"
10PY_VERSION = 3
11JOB_RETRIES = 2
12ATTRIBUTES = "suite:bvt-perbuild"
13BUG_TEMPLATE = {
14    "components": ["OS>Kernel"]
15}
16
17DOC = """
18This test deletes the existing ureadahead pack files from the client, reboots
19the client, and checks whether new ureadahead pack files were created on
20reboot.
21"""
22
23def run(machine):
24    host = hosts.create_host(machine)
25    job.run_test("platform_UReadAheadServer", host=host)
26
27parallel_simple(run, machines)
28