22 lines
		
	
	
		
			709 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			709 B
		
	
	
	
		
			Plaintext
		
	
	
	
| # Copyright (c) 2014 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_MemoryIntegrity.suspend'
 | |
| AUTHOR = 'puthik'
 | |
| PURPOSE = 'Check memory integrity after long suspend'
 | |
| TIME = 'LENGTHY'
 | |
| TEST_CLASS = 'hardware'
 | |
| TEST_TYPE = 'server'
 | |
| 
 | |
| DOC = """
 | |
| This test call hardware_StorageFio to write data once to the ramfs and
 | |
| then after suspend for an hour, verify the integrity of that data.
 | |
| """
 | |
| 
 | |
| def run_hardware_MemoryIntegrity(machine):
 | |
|     job.run_test('hardware_MemoryIntegrity', client_ip=machine,
 | |
|                  tag=NAME.split('.')[1])
 | |
| 
 | |
| job.parallel_simple(run_hardware_MemoryIntegrity, machines)
 |