1# Copyright (c) 2014 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 = 'kernel_MemoryRamoop'
6AUTHOR = 'puthik'
7PURPOSE = 'Check that kernel log preserve correctly in RAM'
8TIME = 'SHORT'
9TEST_CLASS = 'kernel'
10TEST_TYPE = 'server'
11ATTRIBUTES = "suite:experimental"
12SUITE = 'experimental'
13
14DOC = """
15This test verify that /dev/pstore/console-ramoops is preserved correctly
16after system reboot/kernel crash and also verify integrity of that log.
17"""
18
19def run_kernel_MemoryRamoop(machine):
20    job.run_test('kernel_MemoryRamoop', client_ip=machine)
21
22job.parallel_simple(run_kernel_MemoryRamoop, machines)
23
24