22 lines
		
	
	
		
			699 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			699 B
		
	
	
	
		
			Plaintext
		
	
	
	
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
 | 
						|
# Use of this source code is governed by a BSD-style license that can be
 | 
						|
# found in the LICENSE file.
 | 
						|
 | 
						|
NAME = 'hardware_StorageStress'
 | 
						|
AUTHOR = 'puthik, grundler'
 | 
						|
PURPOSE = 'Check storage data integrity after multiple reboot/suspend'
 | 
						|
TIME = 'LENGTHY'
 | 
						|
TEST_CLASS = 'hardware'
 | 
						|
TEST_TYPE = 'server'
 | 
						|
 | 
						|
DOC = """
 | 
						|
This test calls hardware_StorageFio to write data once and repeatedly verifies
 | 
						|
data in the storage for 12 hours with machine rebooted between each verify.
 | 
						|
"""
 | 
						|
 | 
						|
def run_hardware_storage_stress(machine):
 | 
						|
    job.run_test('hardware_StorageStress', client_ip=machine)
 | 
						|
 | 
						|
job.parallel_simple(run_hardware_storage_stress, machines)
 | 
						|
 |