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