• 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 = "BootDevice"
6AUTHOR = "Chrome OS Team"
7ATTRIBUTES = "suite:stress"
8TIME = "LONG"
9TEST_CATEGORY = "Stress"
10TEST_CLASS = "platform"
11TEST_TYPE = "server"
12
13DOC = """
14This test reboots the device continuously for a spedified number of iterations.
15This is useful for testing firmware.
16"""
17
18def run_bootdevice(machine):
19    host = hosts.create_host(machine)
20    job.run_test("platform_BootDevice", host=host, reboot_iterations=100)
21
22parallel_simple(run_bootdevice, machines)
23