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

Unified Diff: client/tests/libhugetlbfs/libhugetlbfs.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/kvm/unittests.cfg.sample ('k') | client/tests/lmbench/lmbench.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/libhugetlbfs/libhugetlbfs.py
diff --git a/client/tests/libhugetlbfs/libhugetlbfs.py b/client/tests/libhugetlbfs/libhugetlbfs.py
index 2fe6b4596e53180030fef9c6ac6e1081d8a97bb3..373a5ba6a078fb57001b5be8195ade1d2c7f3548 100644
--- a/client/tests/libhugetlbfs/libhugetlbfs.py
+++ b/client/tests/libhugetlbfs/libhugetlbfs.py
@@ -44,9 +44,9 @@ class libhugetlbfs(test.test):
# make might fail if there are no proper headers for the 32 bit
# version, in that case try only for the 64 bit version
try:
- utils.system('make')
+ utils.make()
except:
- utils.system('make OBJDIRS=obj64')
+ utils.make('OBJDIRS=obj64')
def run_once(self):
@@ -54,9 +54,9 @@ class libhugetlbfs(test.test):
# make check might fail for 32 bit if the 32 bit compile earlier
# had failed. See if it passes for 64 bit in that case.
try:
- utils.system('make check')
+ utils.make('check')
except:
- utils.system('make check OBJDIRS=obj64')
+ utils.make('check OBJDIRS=obj64')
def cleanup(self):
« no previous file with comments | « client/tests/kvm/unittests.cfg.sample ('k') | client/tests/lmbench/lmbench.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698