From 3e966abc1ff06d8b707658416343c11b060ff221 Mon Sep 17 00:00:00 2001 From: machenbach Date: Tue, 7 Jul 2015 04:42:12 -0700 Subject: [PATCH] [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} --- tools/testrunner/local/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testrunner/local/utils.py b/tools/testrunner/local/utils.py index 2842b13..cb6c350 100644 --- a/tools/testrunner/local/utils.py +++ b/tools/testrunner/local/utils.py @@ -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. -- 2.7.4