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 5NAME = 'hardware_StorageStress.soak_test' 6AUTHOR = 'gwendal' 7PURPOSE = 'Test hardware_StorageStress.soak code' 8TIME = 'LENGTHY' 9TEST_CLASS = 'hardware' 10TEST_TYPE = 'server' 11PY_VERSION = 3 12 13DOC = """ 14Shorter version of control.soak, last only 1 hour: 15""" 16 17def run_hardware_storage_stress(machine): 18 job.run_test('hardware_StorageStress', client_ip=machine, duration=3600, 19 power_command='wait', storage_test_command='full_write', 20 suspend_duration= 5 * 60) 21 22job.parallel_simple(run_hardware_storage_stress, machines) 23 24