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

Side by Side Diff: client/samples/control.alt_tags

Issue 4823005: Merge remote branch 'cros/upstream' into tempbranch (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: patch Created 10 years, 1 month 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 | « client/samples/build2 ('k') | client/samples/control.fs » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 AUTHOR = "Autotest Team <autotest@test.kernel.org>"
2 TIME = "MEDIUM"
3 NAME = "Sample - Building and adding an alternate kernel"
4 TEST_TYPE = "client"
5 TEST_CLASS = "Kernel"
6 TEST_CATEGORY = "Functional"
7
8 DOC = """
9 Builds a test kernel, then runs the kernbench test. This sample shows the
10 job.bootloader object, as well as building kernels with alternate idenfifying
11 tags.
12 """
13
14 def step_init():
15 """
16 Build a kernel from kernel.org. This step will be executed, the machine
17 will be rebooted and then we'll proceed with step_tests.
18 """
19 job.next_step([step_tests])
20 testkernel = job.kernel('2.6.35')
21 # This is the default config that can be retrieved on gitweb
22 testkernel.config('http://git.kernel.org/?p=linux/kernel/git/stable/linux-2. 6.35.y.git;a=blob_plain;f=arch/x86/configs/x86_64_defconfig;h=6c86acd847a4e28c09 d951b34d488b13d44df3c7;hb=ea8a52f9f4bcc3420c38ae07f8378a2f18443970')
23 testkernel.build()
24 testkernel.install('autotest-alternate')
25 job.bootloader.list_titles()
26 testkernel.boot('autotest-alternate')
27
28
29 def step_tests():
30 """
31 Run a series of autotest tests on this machine.
32 """
33 job.run_test('kernbench', iterations=2, threads=5)
OLDNEW
« no previous file with comments | « client/samples/build2 ('k') | client/samples/control.fs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698