| Index: tools/jsfunfuzz/download_jsfunfuzz.py
|
| diff --git a/tools/gcmole/download_gcmole_tools.py b/tools/jsfunfuzz/download_jsfunfuzz.py
|
| old mode 100755
|
| new mode 100644
|
| similarity index 55%
|
| copy from tools/gcmole/download_gcmole_tools.py
|
| copy to tools/jsfunfuzz/download_jsfunfuzz.py
|
| index 7183d28f3488b37736777b87aef640dbf91fbb8c..19eff02438feae19b940167265205a4383db7aca
|
| --- a/tools/gcmole/download_gcmole_tools.py
|
| +++ b/tools/jsfunfuzz/download_jsfunfuzz.py
|
| @@ -7,16 +7,16 @@ import os
|
| import re
|
| import subprocess
|
|
|
| -GCMOLE_PATH = os.path.dirname(os.path.abspath(__file__))
|
| -SHA1_PATH = os.path.join(GCMOLE_PATH, 'gcmole-tools.tar.gz.sha1')
|
| +FUZZ_PATH = os.path.dirname(os.path.abspath(__file__))
|
| +SHA1_PATH = os.path.join(FUZZ_PATH, 'jsfunfuzz.tar.gz.sha1')
|
|
|
| -if re.search(r'\bgcmole=1', os.environ.get('GYP_DEFINES', '')):
|
| +if re.search(r'\bjsfunfuzz=1', os.environ.get('GYP_DEFINES', '')):
|
| subprocess.check_call([
|
| 'download_from_google_storage',
|
| - '-b', 'chrome-v8-gcmole',
|
| + '-b', 'chrome-v8-jsfunfuzz',
|
| '-u', '--no_resume',
|
| '-s', SHA1_PATH,
|
| '--platform=linux*'
|
| ])
|
| else:
|
| - print 'Skipping gcmole download as gcmole is not set in gyp flags.'
|
| + print 'Skipping jsfunfuzz download as jsfunfuzz is not set in gyp flags.'
|
|
|