21 lines
602 B
Plaintext
21 lines
602 B
Plaintext
# Copyright 2015 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_StorageSuspendStress.test'
|
|
AUTHOR = 'grundler, gwendal, puthik'
|
|
PURPOSE = 'Test StorageSuspendStress code'
|
|
TIME = 'MEDIUM'
|
|
TEST_CLASS = 'hardware'
|
|
TEST_TYPE = 'server'
|
|
|
|
DOC = """
|
|
Test hardware_StorageSuspendStress section.
|
|
"""
|
|
|
|
def run_hardware_storage_stress(machine):
|
|
job.run_test('hardware_StorageQualSuspendStress', client_ip=machine, duration=3600)
|
|
|
|
job.parallel_simple(run_hardware_storage_stress, machines)
|
|
|