OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 AUTHOR = "Chrome OS Team" |
| 6 NAME = "KernelCrashServer" |
| 7 TIME = "SHORT" |
| 8 TEST_CATEGORY = "Benchmark" |
| 9 TEST_CLASS = "platform" |
| 10 TEST_TYPE = "server" |
| 11 |
| 12 DOC = """ |
| 13 This test crashes the client and verifies the kernel crash was collected. |
| 14 """ |
| 15 |
| 16 def run_it(machine): |
| 17 host = hosts.create_host(machine) |
| 18 job.run_test("logging_KernelCrashServer", host=host) |
| 19 |
| 20 parallel_simple(run_it, machines) |
OLD | NEW |