diff options
author | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-05 21:19:45 +0000 |
---|---|---|
committer | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-05 21:19:45 +0000 |
commit | f0a349f50cdb520140c4a471de36038a9d1e0823 (patch) | |
tree | 6f6695f51a9c2d93a736199c7c950c6a616e199a | |
parent | 6f8fd9ec704392a3f2d2c0bf82d75cc47b15b9bd (diff) | |
download | chromium_src-f0a349f50cdb520140c4a471de36038a9d1e0823.zip chromium_src-f0a349f50cdb520140c4a471de36038a9d1e0823.tar.gz chromium_src-f0a349f50cdb520140c4a471de36038a9d1e0823.tar.bz2 |
[chromedriver] Use 64-bit version of ChromeDriver linux for perf tests.
BUG=none
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/16461004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204342 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | chrome/test/chromedriver/run_all_tests.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/test/chromedriver/run_all_tests.py b/chrome/test/chromedriver/run_all_tests.py index 5cbf7e4..c8f47bd 100755 --- a/chrome/test/chromedriver/run_all_tests.py +++ b/chrome/test/chromedriver/run_all_tests.py @@ -7,6 +7,7 @@ import optparse import os +import platform import sys import archive @@ -128,11 +129,14 @@ def main(): print 'Using build outputs from', build_dir chromedriver = os.path.join(build_dir, server_name) + platform = util.GetPlatformName() + if util.IsLinux() and platform.architecture()[0] == '64bit': + platform += '64' ref_chromedriver = os.path.join( chrome_paths.GetSrc(), 'chrome', 'test', 'chromedriver', 'third_party', 'java_tests', 'reference_builds', - 'chromedriver_%s%s' % (util.GetPlatformName(), exe_postfix)) + 'chromedriver_%s%s' % (platform, exe_postfix)) if util.IsLinux(): # Set LD_LIBRARY_PATH to enable successful loading of shared object files, |