https://bugs.webkit.org/show_bug.cgi?id=149196
Reviewed by Daniel Bates.
* BuildSlaveSupport/built-product-archive:
(unzipArchive):
Using different versions of python makes what I think is https://bugs.python.org/issue15795
prevent us from executing files from the archive on the test bots.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@189851
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
elif sys.platform == 'win32':
archive = zipfile.ZipFile(archiveFile, "r")
archive.extractall(directoryToExtractTo)
+ for filename in archive.namelist()
+ os.chmod(filename, 0555)
archive.close()
os.unlink(archiveFile)
+2015-09-15 Alex Christensen <achristensen@webkit.org>
+
+ Fix Windows test bots after changing to non-cygwin build
+ https://bugs.webkit.org/show_bug.cgi?id=149196
+
+ Reviewed by Daniel Bates.
+
+ * BuildSlaveSupport/built-product-archive:
+ (unzipArchive):
+ Using different versions of python makes what I think is https://bugs.python.org/issue15795
+ prevent us from executing files from the archive on the test bots.
+
2015-09-15 Ryosuke Niwa <rniwa@webkit.org>
Add ShadowRoot interface and Element.prototype.attachShadow