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