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" 12 13DOC = """ 14This test verify that /sys/fs/pstore/console-ramoops is preserved correctly 15after system reboot/kernel crash and also verify integrity of that log. 16""" 17 18def run_kernel_MemoryRamoop(machine): 19 job.run_test('kernel_MemoryRamoop', client_ip=machine) 20 21job.parallel_simple(run_kernel_MemoryRamoop, machines) 22 23