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