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