xref: /aosp_15_r20/external/autotest/server/site_tests/hardware_MemoryIntegrity/control.idle (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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.idle'
6AUTHOR = 'puthik'
7PURPOSE = 'Check memory integrity after long idle'
8TIME = 'LENGTHY'
9TEST_CLASS = 'hardware'
10TEST_TYPE = 'server'
11PY_VERSION = 3
12
13DOC = """
14This test call hardware_StorageFio to write data once to the ramfs and
15then after idle for an hour, verify the integrity of that data.
16"""
17
18def run_hardware_MemoryIntegrity(machine):
19    job.run_test('hardware_MemoryIntegrity', client_ip=machine, suspend=False,
20                 tag=NAME.split('.')[1])
21
22job.parallel_simple(run_hardware_MemoryIntegrity, machines)
23