From 09e73bc79be37b58ef33e17e6e3ea06501847d6d Mon Sep 17 00:00:00 2001 From: "mstarzinger@chromium.org" Date: Fri, 28 Sep 2012 15:53:46 +0000 Subject: [PATCH] Test runner: remove noisy debug output. R=jkummerow@chromium.org Review URL: https://codereview.chromium.org/10993080 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12634 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/run-tests.py | 1 - tools/test-server.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/run-tests.py b/tools/run-tests.py index 7afc8fc..ed01abe 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 ] diff --git a/tools/test-server.py b/tools/test-server.py index 16329dc..ab927de 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") -- 2.7.4