Reviewers: Jakob, tandrii(chromium),
Message:
PTAL - last attempt (tested on the bot) - if that's not ok then test262 will
stay off on windows...
Description:
[test] Turn off certificate verification when downloading test data on
windows.
BUG=v8:4254
LOG=n
NOTRY=true
NOPRESUBMIT=true
NOTREECHECKS=true
[email protected]
Please review this at https://codereview.chromium.org/1220333004/
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Affected files (+1, -1 lines):
M tools/testrunner/local/utils.py
Index: tools/testrunner/local/utils.py
diff --git a/tools/testrunner/local/utils.py
b/tools/testrunner/local/utils.py
index
2842b13913e638190f7fd267fb7d9c851097fef0..cb6c350e4e03543b7daa3f66f2b1b113356c5841
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.
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.