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

Unified Diff: client/tests/dbt2/dbt2.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/cyclictest/cyclictest.py ('k') | client/tests/ebizzy/ebizzy.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/dbt2/dbt2.py
diff --git a/client/tests/dbt2/dbt2.py b/client/tests/dbt2/dbt2.py
index 9f341ef54e4d8e293ea34ccd6f573a18a37acfdd..5a74262ce223fa1c689266c066fe2798fb174369 100644
--- a/client/tests/dbt2/dbt2.py
+++ b/client/tests/dbt2/dbt2.py
@@ -23,18 +23,16 @@ class dbt2(test.test):
#
utils.system('cp -pR ' + self.srcdir + ' ' + self.srcdir + '.mysql')
os.chdir(self.srcdir + '.mysql')
- utils.system('./configure --with-mysql=%s/deps/mysql/mysql' \
- % self.autodir)
- utils.system('make')
+ utils.configure('--with-mysql=%s/deps/mysql/mysql' % self.autodir)
+ utils.make()
#
# Extract one copy of the kit for PostgreSQL.
#
utils.system('cp -pR ' + self.srcdir + ' ' + self.srcdir + '.pgsql')
os.chdir(self.srcdir + '.pgsql')
- utils.system('./configure --with-postgresql=%s/deps/pgsql/pgsql' \
- % self.autodir)
- utils.system('make')
+ utils.configure('--with-postgresql=%s/deps/pgsql/pgsql' % self.autodir)
+ utils.make()
# Create symlinks to autotest's results directory from dbt-2's
# preferred results directory to self.resultsdir
« no previous file with comments | « client/tests/cyclictest/cyclictest.py ('k') | client/tests/ebizzy/ebizzy.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698