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

Unified Diff: client/tests/iozone/iozone.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/iosched_bugs/iosched_bugs.py ('k') | client/tests/iperf/iperf.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/iozone/iozone.py
diff --git a/client/tests/iozone/iozone.py b/client/tests/iozone/iozone.py
index 79178e10352a241134902ebcf10dae4efc08d203..4fbec26a62d8519cb3baa26b1892407f3d2f2254 100755
--- a/client/tests/iozone/iozone.py
+++ b/client/tests/iozone/iozone.py
@@ -37,13 +37,13 @@ class iozone(test.test):
arch = utils.get_current_kernel_arch()
if (arch == 'ppc'):
- utils.system('make linux-powerpc')
+ utils.make('linux-powerpc')
elif (arch == 'ppc64'):
- utils.system('make linux-powerpc64')
+ utils.make('linux-powerpc64')
elif (arch == 'x86_64'):
- utils.system('make linux-AMD64')
+ utils.make('linux-AMD64')
else:
- utils.system('make linux')
+ utils.make('linux')
def run_once(self, dir=None, args=None):
« no previous file with comments | « client/tests/iosched_bugs/iosched_bugs.py ('k') | client/tests/iperf/iperf.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698