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

Unified Diff: tools/test-server.py

Issue 10993080: Test runner: remove noisy debug output. (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 | « tools/run-tests.py ('k') | 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 16329dc77a4b8d8484676db311e0be7ceaea18a3..ab927de75f4e1e7a252580a9f762e6aad7d4ea38 100755
--- a/tools/test-server.py
+++ b/tools/test-server.py
@@ -78,9 +78,9 @@ def Update():
import ujson #@UnusedImport
except ImportError:
# Install pip if it doesn't exist.
- code = subprocess.call("which pip", shell=True)
+ code = subprocess.call("which pip > /dev/null", shell=True)
if code != 0:
- apt_get_code = subprocess.call("which apt-get", shell=True)
+ apt_get_code = subprocess.call("which apt-get > /dev/null", shell=True)
if apt_get_code == 0:
print("Installing pip...")
_Cmd("sudo apt-get install python-pip")
« no previous file with comments | « tools/run-tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698