Changeset 146125 in webkit
- Timestamp:
- Mar 18, 2013, 2:30:00 PM (13 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/tool/steps/haslanded_unittest.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r146124 r146125 1 2013-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 1 11 2013-03-18 Zan Dobersek <zdobersek@igalia.com> 2 12 -
trunk/Tools/Scripts/webkitpy/tool/steps/haslanded_unittest.py
r140777 r146125 36 36 maxDiff = None 37 37 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") 39 39 def test_run(self): 40 40 # These patches require trailing whitespace to remain valid patches.
Note:
See TracChangeset
for help on using the changeset viewer.