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

Unified Diff: client/bin/unit_test.py

Issue 3116009: Update autotest tests to use make -j where possible. (Closed) Base URL: ssh://git@chromiumos-git/autotest.git
Patch Set: Convert last two tests to use utils.make(), saving another 20 seconds. Created 10 years, 4 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 | « no previous file | client/common_lib/utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/bin/unit_test.py
diff --git a/client/bin/unit_test.py b/client/bin/unit_test.py
index 3a4a6182dcfb995c480c9de5c8d22fed9557efe0..3231dafe4d725823170f94ddddaaf39fa78fada3 100644
--- a/client/bin/unit_test.py
+++ b/client/bin/unit_test.py
@@ -17,8 +17,8 @@ class unit_test(test.test):
def setup(self):
os.chdir(self.srcdir)
- utils.system('make clean')
- utils.system('make all')
+ utils.make('clean')
+ utils.make('all')
self.job.setup_dep(['gtest'])
« no previous file with comments | « no previous file | client/common_lib/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698