Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: server/site_tests/suites/control.kernel_scheduler_functional

Issue 6575056: kernel_scheduler: fix copyright and spacing for test suites (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | server/site_tests/suites/control.kernel_scheduler_performance » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 AUTHOR = "Chrome OS Team" 5 AUTHOR = "Chrome OS Team"
6 NAME = "Kernel Scheduler Functional" 6 NAME = "Kernel Scheduler Functional"
7 TIME = "SHORT" 7 TIME = "SHORT"
8 TEST_CATEGORY = "Functional" 8 TEST_CATEGORY = "Functional"
9 TEST_CLASS = "suite" 9 TEST_CLASS = "suite"
10 TEST_TYPE = "server" 10 TEST_TYPE = "server"
11 11
12 DOC = """ 12 DOC = """
13 This test suite runs automated tests that should all pass and that verify 13 This test suite runs automated tests that should all pass and that verify
14 the kernel scheduler. 14 the kernel scheduler.
15 """ 15 """
16 16
17 from autotest_lib.client.cros import cros_logging 17 from autotest_lib.client.cros import cros_logging
18 from autotest_lib.server import site_host_attributes 18 from autotest_lib.server import site_host_attributes
19 19
20 # TODO: Add some tests 20 # TODO: Add some tests
21 TESTS = [ 21 TESTS = [
22 ] 22 ]
23 23
24 24
25 def run_tests(machine): 25 def run_tests(machine):
26 client = hosts.create_host(machine) 26 client = hosts.create_host(machine)
27 client_attributes = site_host_attributes.HostAttributes(machine) 27 client_attributes = site_host_attributes.HostAttributes(machine)
28 28
29 client_at = autotest.Autotest(client) 29 client_at = autotest.Autotest(client)
30 for test, argv in TESTS: 30 for test, argv in TESTS:
31 client_at.run_test(test, **argv) 31 client_at.run_test(test, **argv)
32 32
33 33
34 job.parallel_on_machines(run_tests, machines) 34 job.parallel_on_machines(run_tests, machines)
OLDNEW
« no previous file with comments | « no previous file | server/site_tests/suites/control.kernel_scheduler_performance » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698