Home | History | Annotate | Download | only in platform_InternalDisplay
      1 # Copyright (c) 2015 The Chromium OS Authors. All rights reserved 2014.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 from autotest_lib.server import utils
      6 
      7 AUTHOR = "Chrome OS Team"
      8 NAME = "platform_InternalDisplay"
      9 PURPOSE = "Check if chromebook is initialized with internal dispalyt"
     10 CRITERIA = "This test will fail if internal display is not set"
     11 TIME = "SHORT"
     12 TEST_CATEGORY = "Functional"
     13 TEST_CLASS = "platform"
     14 TEST_TYPE = "server"
     15 SUITE = "bvt-perbuild"
     16 REQUIRE_SSP = False
     17 
     18 
     19 DOC = """
     20 This test catches internal display not initialized for devices with internal display - crbug/508569.
     21 It's checked after 1) reboot and 2) suspend/resume.
     22 """
     23 
     24 args_dict = utils.args_to_dict(args)
     25 
     26 def run(machine):
     27     host = hosts.create_host(machine)
     28     job.run_test("platform_InternalDisplay", host=host,
     29                  disable_sysinfo=True)
     30 
     31 parallel_simple(run, machines)