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

Side by Side Diff: client/samples/parallel_dd

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/parallel ('k') | client/samples/profilers » ('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 def tests(tag):
2 fs = job.filesystem('/dev/sda3', job.tmpdir)
3 job.run_test('parallel_dd', fs=fs, fs_type='ext2', iterations=1, megabyt es=1000, streams=2, tag=tag)
4
5 def step_init():
6 testkernel = job.kernel('/usr/src/linux-2.6.18.tar.bz2')
7 testkernel.config('/usr/src/config')
8 testkernel.build()
9 job.next_step([step_one])
10 testkernel.boot()
11
12 def step_one():
13 tests('mainline')
14 testkernel = job.kernel('/usr/src/linux-2.6.18.tar.bz2')
15 testkernel.patch('/usr/src/ext2_reservations')
16 testkernel.config('/usr/src/config')
17 testkernel.build()
18 job.next_step([step_two])
19 testkernel.boot()
20
21 def step_two():
22 tests('extents')
OLDNEW
« no previous file with comments | « client/samples/parallel ('k') | client/samples/profilers » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698