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

Unified Diff: tools/jsfunfuzz/download_jsfunfuzz.py

Issue 1706963005: [Swarming] Bundle jsfunfuzz. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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
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.'

Powered by Google App Engine
This is Rietveld 408576698