1 # Copyright (c) 2014 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 from autotest_lib.client.common_lib import utils 6 7 AUTHOR = "bsimonnet (a] chromium.org" 8 NAME = "platform_Vpd" 9 TIME = "SHORT" 10 TEST_CATEGORY = "Functional" 11 TEST_CLASS = "platform" 12 TEST_TYPE = "server" 13 ATTRIBUTES = "suite:regression" 14 SUITE = "regression" 15 16 DOC = """ 17 This test checks that vpd can run correctly, generates the cache when it 18 reboots and that the generated files have the right permissions. 19 """ 20 21 def run_test(machine): 22 host = hosts.create_host(machine) 23 job.run_test("platform_Vpd", host=host) 24 25 parallel_simple(run_test, machines) 26