1# Copyright (c) 2013 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 = "platform_CrashStateful"
6AUTHOR = "chromeos-kernel,taysom"
7ATTRIBUTES = "suite:kernel_daily_regression"
8DEPENDENCIES = "servo_state:WORKING"
9TIME = "MEDIUM"
10TEST_CATEGORY = "Functional"
11TEST_CLASS = "platform"
12TEST_TYPE = "server"
13
14DOC = """
15Tests crash recovery of stateful partition.
16"""
17
18def run_crash_stateful(machine):
19    host = hosts.create_host(machine)
20    job.run_test("platform_CrashStateful", host=host)
21
22parallel_simple(run_crash_stateful, machines)
23