Home | History | Annotate | Download | only in hardware_MemoryIntegrity
      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 
      5 NAME = 'hardware_MemoryIntegrity.quick'
      6 AUTHOR = 'puthik'
      7 PURPOSE = 'Check memory integrity after long suspend'
      8 TIME = 'FAST'
      9 TEST_CLASS = 'hardware'
     10 TEST_TYPE = 'server'
     11 ATTRIBUTES = "suite:experimental"
     12 
     13 DOC = """
     14 This test call hardware_StorageFio to write data once to the ramfs and
     15 then after suspend for 30 seconds, verify the integrity of that data.
     16 """
     17 
     18 def run_hardware_MemoryIntegrity(machine):
     19     job.run_test('hardware_MemoryIntegrity', tag='quick',
     20                  client_ip=machine, seconds=30)
     21 
     22 job.parallel_simple(run_hardware_MemoryIntegrity, machines)
     23