| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 AUTHOR = "Chrome OS Team" | 5 AUTHOR = "Chrome OS Team" |
| 6 NAME = "BootPerfServer" | 6 NAME = "BootPerfServer" |
| 7 TIME = "SHORT" | 7 TIME = "SHORT" |
| 8 TEST_CATEGORY = "Benchmark" | 8 TEST_CATEGORY = "Benchmark" |
| 9 TEST_CLASS = "platform" | 9 TEST_CLASS = "platform" |
| 10 TEST_TYPE = "server" | 10 TEST_TYPE = "server" |
| 11 | 11 |
| 12 DOC = """ | 12 DOC = """ |
| 13 This test reboots the client and uses the client-side platform_BootPerf test | 13 This test reboots the client and uses the client-side platform_BootPerf test |
| 14 to collect boot performance metrics. | 14 to collect boot performance metrics. |
| 15 """ | 15 """ |
| 16 | 16 |
| 17 def run_bootperf(machine): | 17 def run_bootperf(machine): |
| 18 host = hosts.create_host(machine) | 18 host = hosts.create_host(machine) |
| 19 job.run_test("platform_BootPerfServer", host=host) | 19 job.run_test("platform_BootPerfServer", host=host, iterations=10) |
| 20 | 20 |
| 21 parallel_simple(run_bootperf, machines) | 21 parallel_simple(run_bootperf, machines) |
| OLD | NEW |