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 SUITE = "bvt-perbuild" 13 BUG_TEMPLATE = { 14 "labels": ["Cr-OS-Kernel"] 15 } 16 17 DOC = """ 18 This test deletes the existing ureadahead pack files from the client, reboots 19 the client, and checks whether new ureadahead pack files were created on 20 reboot. 21 """ 22 23 def run(machine): 24 host = hosts.create_host(machine) 25 job.run_test("platform_UReadAheadServer", host=host) 26 27 parallel_simple(run, machines) 28