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