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