Home | History | Annotate | Download | only in kernel_EmptyLines
      1 # Copyright (c) 2012 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 = "EmptyLines"
      6 AUTHOR = "Chrome OS Team"
      7 ATTRIBUTES = "suite:kernel_daily_regression"
      8 TIME = "SHORT"
      9 TEST_CATEGORY = "Functional"
     10 TEST_CLASS = "kernel"
     11 TEST_TYPE = "server"
     12 
     13 DOC = """
     14 This test checks dmesg output for empty lines caused by double \n in
     15 printk format strings. It will reboot the host to check the output
     16 since boot.
     17 """
     18 
     19 def run_kernel_empty_lines(machine):
     20     host = hosts.create_host(machine)
     21     job.run_test("kernel_EmptyLines", host=host)
     22 
     23 parallel_simple(run_kernel_empty_lines, machines)
     24