Reviewers: Jakob,
Description:
Test runner: remove noisy debug output.
[email protected]
Please review this at https://codereview.chromium.org/10993080/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M tools/run-tests.py
M tools/test-server.py
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index
7afc8fcfad1d343e3d2c1e697d4aa27016bfc82a..ed01abee042ab0fbc219b3572d97d57b48ac6837
100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -220,7 +220,6 @@ def Main():
exit_code = code
suite_paths = utils.GetSuitePaths(join(workspace, "test"))
- print "all suite_paths:", suite_paths
if len(args) == 0:
suite_paths = [ s for s in suite_paths if s in DEFAULT_TESTS ]
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")
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev