1# Copyright (c) 2019 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_StorageStress.other'
6AUTHOR = 'puthik, grundler'
7PURPOSE = 'Check storage data integrity after multiple reboot/suspend'
8TIME = 'LENGTHY'
9TEST_CLASS = 'hardware'
10TEST_TYPE = 'server'
11
12DOC = """
13This test calls hardware_StorageFio to write data once and repeatedly verifies
14data in the storage for 12 hours with machine rebooted between each verify.
15This tests the non-root storage device, if it exists.
16"""
17
18def run_hardware_storage_stress(machine):
19    job.run_test('hardware_StorageStress', client_ip=machine, nonroot_dev=True)
20
21job.parallel_simple(run_hardware_storage_stress, machines)
22
23