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