Home | History | Annotate | Download | only in kernel_IgnoreGptOptionServer
      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 
      5 NAME = 'kernel_IgnoreGptOptionServer'
      6 AUTHOR = 'The Chromium OS Authors'
      7 PURPOSE = 'Test that the kernel ignores the "gpt" cmd line option.'
      8 TIME = 'SHORT'
      9 TEST_CLASS = 'kernel'
     10 TEST_TYPE = 'server'
     11 
     12 DOC = '''
     13     Checks that kernel is ignoring the command line option "gpt".
     14 '''
     15 
     16 def run(machine):
     17     host = hosts.create_host(machine)
     18     job.run_test("kernel_IgnoreGptOptionServer", host=host)
     19 
     20 parallel_simple(run, machines)
     21