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

Side by Side Diff: client/tests/cyclictest/cyclictest.py

Issue 3554003: Merge remote branch 'cros/upstream' into tempbranch3 (Closed) Base URL: http://git.chromium.org/git/autotest.git
Patch Set: Created 10 years, 2 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 | « client/tests/cerberus/cerberus.py ('k') | client/tests/dbt2/dbt2.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import os 1 import os
2 from autotest_lib.client.bin import test 2 from autotest_lib.client.bin import test
3 from autotest_lib.client.common_lib import utils 3 from autotest_lib.client.common_lib import utils
4 4
5 5
6 class cyclictest(test.test): 6 class cyclictest(test.test):
7 version = 2 7 version = 2
8 preserve_srcdir = True 8 preserve_srcdir = True
9 9
10 # git://git.kernel.org/pub/scm/linux/kernel/git/tglx/rt-tests.git 10 # git://git.kernel.org/pub/scm/linux/kernel/git/tglx/rt-tests.git
11 def initialize(self): 11 def initialize(self):
12 self.job.require_gcc() 12 self.job.require_gcc()
13 13
14 14
15 def setup(self): 15 def setup(self):
16 os.chdir(self.srcdir) 16 os.chdir(self.srcdir)
17 utils.system('make') 17 utils.make()
18 18
19 19
20 def execute(self, args = '-t 10 -l 100000'): 20 def execute(self, args = '-t 10 -l 100000'):
21 utils.system(self.srcdir + '/cyclictest ' + args) 21 utils.system(self.srcdir + '/cyclictest ' + args)
OLDNEW
« no previous file with comments | « client/tests/cerberus/cerberus.py ('k') | client/tests/dbt2/dbt2.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698