Changeset 112337 in webkit


Ignore:
Timestamp:
Mar 27, 2012 5:12:57 PM (12 years ago)
Author:
dpranke@chromium.org
Message:

new-run-webkit-tests: suppress debug output from run-safari on results file
https://bugs.webkit.org/show_bug.cgi?id=82400

Reviewed by Ryosuke Niwa.

Send the run-safari output to /dev/null rather than the console.

  • Scripts/webkitpy/layout_tests/port/mac.py:

(MacPort.show_results_html_file):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r112322 r112337  
     12012-03-27  Dirk Pranke  <dpranke@chromium.org>
     2
     3        new-run-webkit-tests: suppress debug output from run-safari on results file
     4        https://bugs.webkit.org/show_bug.cgi?id=82400
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Send the run-safari output to /dev/null rather than the console.
     9
     10        * Scripts/webkitpy/layout_tests/port/mac.py:
     11        (MacPort.show_results_html_file):
     12
    1132012-03-27  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/mac.py

    r112189 r112337  
    2828
    2929import logging
     30import os
    3031import re
    3132import subprocess
     
    147148        # to exit and we want the output to show up on stdout in case there are errors
    148149        # launching the browser.
    149         self._executive.popen([self._config.script_path('run-safari')] + self._arguments_for_configuration() + ['--no-saved-state', '-NSOpen', results_filename], cwd=self._config.webkit_base_dir())
     150        self._executive.popen([self._config.script_path('run-safari')] + self._arguments_for_configuration() + ['--no-saved-state', '-NSOpen', results_filename],
     151            cwd=self._config.webkit_base_dir(), stdout=file(os.devnull), stderr=file(os.devnull))
    150152
    151153    # FIXME: The next two routines turn off the http locking in order
Note: See TracChangeset for help on using the changeset viewer.