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