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 5AUTHOR = "ChromeOS Team" 6NAME = "hardware_StorageQualCheckSetup" 7PURPOSE = "Test that the moblab has the correct setup for storage_qual suite" 8ATTRIBUTES = "suite:check_setup_storage_qual" 9TIME = "SHORT" 10TEST_CATEGORY = "General" 11TEST_CLASS = "dummy" 12TEST_TYPE = "server" 13PY_VERSION = 3 14REQUIRE_SSP = False 15FAST = False 16 17DOC = """ 18 19""" 20 21def run(machine): 22 job.run_test('hardware_StorageQualCheckSetup', host=hosts.create_host(machine)) 23 24parallel_simple(run, machines) 25