Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: tools/test-server.py

Issue 10990109: test runner: fix "test-server.py setup" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test-server.py
diff --git a/tools/test-server.py b/tools/test-server.py
index 8ce7e40dad3de150771a26c208ed4ed09067b279..16329dc77a4b8d8484676db311e0be7ceaea18a3 100755
--- a/tools/test-server.py
+++ b/tools/test-server.py
@@ -84,8 +84,6 @@ def Update():
if apt_get_code == 0:
print("Installing pip...")
_Cmd("sudo apt-get install python-pip")
- print("Updating pip using itself...")
- _Cmd("sudo pip install --upgrade pip")
else:
print("Please install pip on your machine. You can get it at: "
"http://www.pip-installer.org/en/latest/installing.html "
@@ -122,7 +120,7 @@ def Update():
# Update this very script.
path = ("http://v8.googlecode.com/svn/branches/bleeding_edge/"
- "tools/server.py")
+ "tools/test-server.py")
scriptname = os.path.abspath(sys.argv[0])
_Cmd("svn cat %s > %s" % (path, scriptname))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698