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

Unified Diff: client/tests/lmbench/lmbench.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, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/tests/libhugetlbfs/libhugetlbfs.py ('k') | client/tests/ltp/ltp.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/lmbench/lmbench.py
diff --git a/client/tests/lmbench/lmbench.py b/client/tests/lmbench/lmbench.py
index 33a86b4f0bf3b05d392d55573e683fe4f8f1c698..088325826c190fea6a80b706446c1eba8fa2ea36 100644
--- a/client/tests/lmbench/lmbench.py
+++ b/client/tests/lmbench/lmbench.py
@@ -34,7 +34,7 @@ class lmbench(test.test):
utils.system(p2)
# build lmbench
- utils.system('make')
+ utils.make()
# configure lmbench
utils.system('yes "" | make config')
@@ -62,11 +62,11 @@ class lmbench(test.test):
def run_once(self):
os.chdir(self.srcdir)
- utils.system('make rerun')
+ utils.make('rerun')
def postprocess(self):
# Get the results:
outputdir = self.srcdir + "/results"
results = self.resultsdir + "/summary.txt"
- utils.system("make -C " + outputdir + " summary > " + results)
+ utils.make("-C " + outputdir + " summary > " + results)
« no previous file with comments | « client/tests/libhugetlbfs/libhugetlbfs.py ('k') | client/tests/ltp/ltp.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698