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 15 DOC = """ 16 This test checks that vpd can run correctly, generates the cache when it 17 reboots and that the generated files have the right permissions. 18 """ 19 20 def run_test(machine): 21 host = hosts.create_host(machine) 22 job.run_test("platform_Vpd", host=host) 23 24 parallel_simple(run_test, machines) 25