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 5AUTHOR = "gwendal" 6NAME = "StorageQualBase.test" 7TIME = "LONG" 8TEST_CATEGORY = "Functional" 9TEST_CLASS = "suite" 10TEST_TYPE = "server" 11 12DOC = """ 13Check the test hardware_StorageQualBase is working as expected. 14""" 15 16def run_server_tests(machine): 17 job.run_test('hardware_StorageQualBase', client_ip=machine, 18 client_tag='test', crypto_runtime=30) 19 20parallel_simple(run_server_tests, machines) 21 22