Bug 43675
Summary: | upload.py no longer exists in webkit-rietveld project | ||
---|---|---|---|
Product: | WebKit | Reporter: | David Kilzer (:ddkilzer) <ddkilzer> |
Component: | Tools / Tests | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | jparent, ojan |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | All | ||
OS: | All | ||
URL: | http://webkit-rietveld.googlecode.com/svn/trunk/static/upload.py |
David Kilzer (:ddkilzer)
The upload.py file no longer exists in the webkit-rietveld project, which means getting <http://webkit-rietveld.googlecode.com/svn/trunk/static/upload.py> returns a 404 error when Python attempts to download it in WebKitTools/Scripts/webkitpy/thirdparty/__init__.py:
rietveld_dir = os.path.join(autoinstalled_dir, "rietveld")
installer = AutoInstaller(target_dir=rietveld_dir)
installer.install(url="http://webkit-rietveld.googlecode.com/svn/trunk/static/upload.py",
target_name="upload.py")
When running websocket layout tests on a fresh checkout (on an older branch off trunk), the websocket server fails to start because it can't download upload.py:
websocket/tests .Traceback (most recent call last):
File "WebKitTools/Scripts/new-run-webkit-websocketserver", line 38, in <module>
import webkitpy.layout_tests.port.websocket_server as websocket_server
File ".../WebKitTools/Scripts/webkitpy/layout_tests/port/websocket_server.py", line 49, in <module>
from webkitpy.thirdparty.autoinstalled.pywebsocket import mod_pywebsocket
File ".../WebKitTools/Scripts/webkitpy/thirdparty/__init__.py", line 79, in <module>
target_name="upload.py")
File ".../WebKitTools/Scripts/webkitpy/common/system/autoinstall.py", line 482, in install
raise Exception(message)
Exception: Error auto-installing the upload.py package to:
".../WebKitTools/Scripts/webkitpy/thirdparty/autoinstalled/rietveld/upload.py"
--> Inner message: HTTP Error code 404
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
David Kilzer (:ddkilzer)
*** This bug has been marked as a duplicate of bug 43613 ***