⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 146125 in webkit


Ignore:
Timestamp:
Mar 18, 2013, 2:30:00 PM (13 years ago)
Author:
zandobersek@gmail.com
Message:

[webkitpy] '/usr/bin/interdiff' output while running test-webkitpy
https://bugs.webkit.org/show_bug.cgi?id=112622

Reviewed by Dirk Pranke.

  • Scripts/webkitpy/tool/steps/haslanded_unittest.py:

(HasLandedTest): Pipe the stdout and stderr output of the subprocess call to subprocess.PIPE, eliminating unnecessary output.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r146124 r146125  
     12013-03-18  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [webkitpy] '/usr/bin/interdiff' output while running test-webkitpy
     4        https://bugs.webkit.org/show_bug.cgi?id=112622
     5
     6        Reviewed by Dirk Pranke.
     7
     8        * Scripts/webkitpy/tool/steps/haslanded_unittest.py:
     9        (HasLandedTest): Pipe the stdout and stderr output of the subprocess call to subprocess.PIPE, eliminating unnecessary output.
     10
    1112013-03-18  Zan Dobersek  <zdobersek@igalia.com>
    212
  • trunk/Tools/Scripts/webkitpy/tool/steps/haslanded_unittest.py

    r140777 r146125  
    3636    maxDiff = None
    3737
    38     @unittest.skipUnless(subprocess.call('which interdiff', shell=True) == 0, "requires interdiff")
     38    @unittest.skipUnless(subprocess.call('which interdiff', shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0, "requires interdiff")
    3939    def test_run(self):
    4040        # These patches require trailing whitespace to remain valid patches.
Note: See TracChangeset for help on using the changeset viewer.