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