Revision: 12634
Author:   [email protected]
Date:     Fri Sep 28 08:53:46 2012
Log:      Test runner: remove noisy debug output.

[email protected]

Review URL: https://codereview.chromium.org/10993080
http://code.google.com/p/v8/source/detail?r=12634

Modified:
 /branches/bleeding_edge/tools/run-tests.py
 /branches/bleeding_edge/tools/test-server.py

=======================================
--- /branches/bleeding_edge/tools/run-tests.py  Mon Sep 24 02:38:46 2012
+++ /branches/bleeding_edge/tools/run-tests.py  Fri Sep 28 08:53:46 2012
@@ -220,7 +220,6 @@
     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 ]
=======================================
--- /branches/bleeding_edge/tools/test-server.py        Fri Sep 28 07:56:58 2012
+++ /branches/bleeding_edge/tools/test-server.py        Fri Sep 28 08:53:46 2012
@@ -78,9 +78,9 @@
     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

Reply via email to