• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5NAME = "kernel_AsyncDriverProbe"
6AUTHOR = "The Chromium OS Authors"
7PURPOSE = "Verify kernel correctly implements asynchronous driver probing"
8CRITERIA = """
9   Fails if device registration for devices controlled by drivers requesting
10   asynchronous probing takes too long.
11"""
12TIME = "SHORT"
13ATTRIBUTES = "suite:kernel_per-build_regression"
14SUITE = "kernel_per-build_regression"
15TEST_CATEGORY = "Functional"
16TEST_CLASS = "kernel"
17TEST_TYPE = "client"
18
19DOC = """
20    Checks that the kernel correctly implements asynchronous probing for
21    drivers that request it by checking time needed to execute
22    platform_device_register() and platform_driver_register() calls with
23    driver that takes 10 secs to probe device.
24"""
25
26job.run_test('kernel_AsyncDriverProbe')
27