Changeset 139830 in webkit


Ignore:
Timestamp:
Jan 15, 2013 8:42:47 PM (11 years ago)
Author:
dpranke@chromium.org
Message:

remove extraneous output in test-webkitpy
https://bugs.webkit.org/show_bug.cgi?id=106971

Reviewed by Ojan Vafai.

We weren't ignoring or capturing the echoed output from
these two tests, and getting noise in the logs as a result.

  • Scripts/webkitpy/common/system/executive_unittest.py:

(ExecutiveTest.test_auto_stringify_args):
(ExecutiveTest.test_popen_args):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r139827 r139830  
     12013-01-15  Dirk Pranke  <dpranke@chromium.org>
     2
     3        remove extraneous output in test-webkitpy
     4        https://bugs.webkit.org/show_bug.cgi?id=106971
     5
     6        Reviewed by Ojan Vafai.
     7
     8        We weren't ignoring or capturing the echoed output from
     9        these two tests, and getting noise in the logs as a result.
     10
     11        * Scripts/webkitpy/common/system/executive_unittest.py:
     12        (ExecutiveTest.test_auto_stringify_args):
     13        (ExecutiveTest.test_popen_args):
     14
    1152013-01-15  Dirk Pranke  <dpranke@chromium.org>
    216
  • trunk/Tools/Scripts/webkitpy/common/system/executive_unittest.py

    r138264 r139830  
    117117        executive = Executive()
    118118        executive.run_command(command_line('echo', 1))
    119         executive.popen(command_line('echo', 1)).wait()
     119        executive.popen(command_line('echo', 1), stdout=executive.PIPE).wait()
    120120        self.assertEqual('echo 1', executive.command_for_printing(['echo', 1]))
    121121
     
    123123        executive = Executive()
    124124        # Explicitly naming the 'args' argument should not thow an exception.
    125         executive.popen(args=command_line('echo', 1)).wait()
     125        executive.popen(args=command_line('echo', 1), stdout=executive.PIPE).wait()
    126126
    127127    def test_run_command_with_unicode(self):
Note: See TracChangeset for help on using the changeset viewer.