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" 7TIME = "MEDIUM" 8TEST_CATEGORY = "Functional" 9TEST_CLASS = "platform" 10TEST_TYPE = "server" 11 12DOC = """ 13Tests crash recovery of stateful partition 14""" 15 16def run_crash_stateful(machine): 17 host = hosts.create_host(machine) 18 job.run_test("platform_CrashStateful", host=host) 19 20parallel_simple(run_crash_stateful, machines) 21