Commit 3e966abc authored by machenbach's avatar machenbach Committed by Commit bot

[test] Turn off certificate verification when downloading test data on windows.

BUG=v8:4254
LOG=n
NOTRY=true
NOPRESUBMIT=true
NOTREECHECKS=true
TBR=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/1220333004

Cr-Commit-Position: refs/heads/master@{#29513}
parent a7f62edb
......@@ -126,7 +126,7 @@ def URLRetrieve(source, destination):
try:
# In python 2.7.6 on windows, urlopen has a problem with redirects.
# Try using curl instead. Note, this is fixed in 2.7.8.
subprocess.check_call(["curl", source, '-L', '-o', destination])
subprocess.check_call(["curl", source, '-k', '-L', '-o', destination])
return
except:
# If there's no curl, fall back to urlopen.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment