OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 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 = "logging_KernelCrash" | 6 NAME = "logging_KernelCrash" |
7 PURPOSE = "Verify that kernel space crashes are handled correctly." | 7 PURPOSE = "Verify that kernel space crashes are handled correctly." |
8 CRITERIA = """ | 8 CRITERIA = """ |
9 Fails if kernel crashes are not logged when they should be, or if an | 9 Fails if kernel crashes are not logged when they should be, or if an |
10 unexpected kernel crash is logged. | 10 unexpected kernel crash is logged. |
11 """ | 11 """ |
12 TIME = "SHORT" | 12 TIME = "SHORT" |
13 TEST_CATEGORY = "Functional" | 13 TEST_CATEGORY = "Functional" |
14 TEST_CLASS = "logging" | 14 TEST_CLASS = "logging" |
15 TEST_TYPE = "client" | 15 TEST_TYPE = "client" |
16 | 16 |
17 DOC = """ | 17 DOC = """ |
18 See the server-side logging_KernelCrashServer for how to run this file. It | 18 See the server-side logging_KernelCrashServer for how to run this file. It |
19 should not be run standalone. | 19 should not be run standalone. |
20 """ | 20 """ |
21 | 21 |
22 # This file only exists to provide the dashboard with metadata about the | 22 # This file only exists to provide the dashboard with metadata about the |
23 # client-side test in this directory. Ideally we would only have a | 23 # client-side test in this directory. Ideally we would only have a |
24 # server control file to assure the user only uses this in the right | 24 # server control file to assure the user only uses this in the right |
25 # context. | 25 # context. |
26 | 26 |
27 logging.warning('You should use the server side control file. This client ' | 27 logging.warning('You should use the server side control file. This client ' |
28 'test requires the machine to be recently rebooted.') | 28 'test requires the machine to be recently rebooted.') |
29 job.run_test('logging_KernelCrash') | 29 job.run_test('logging_KernelCrash') |
OLD | NEW |