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" 12SUITE = "bvt-perbuild" 13BUG_TEMPLATE = { 14 "labels": ["Cr-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