Changeset 204167 in webkit
- Timestamp:
- Aug 5, 2016, 6:43:49 AM (9 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r204162 r204167 1 2016-08-05 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r204123. 4 https://bugs.webkit.org/show_bug.cgi?id=160597 5 6 Caused layout test timeouts on Windows. (Requested by perarne 7 on #webkit). 8 9 Reverted changeset: 10 11 "[Win] Unable to reliably run tests in parallel" 12 https://bugs.webkit.org/show_bug.cgi?id=140914 13 http://trac.webkit.org/changeset/204123 14 1 15 2016-08-04 Saam Barati <sbarati@apple.com> 2 16 -
trunk/Tools/Scripts/webkitpy/common/system/path.py
r204123 r204167 31 31 import atexit 32 32 import os 33 import re34 33 import subprocess 35 34 import sys … … 52 51 return path 53 52 54 55 def cygpathFast(path):56 """Converts an absolute cygwin path to an absolute Windows path with string replacement."""57 if sys.platform == 'cygwin':58 path = re.sub('/cygdrive/c', 'c:', path)59 path = re.sub('/', r'\\', path)60 return path61 53 62 54 # Note that this object is not threadsafe and must only be called -
trunk/Tools/Scripts/webkitpy/port/driver.py
r204123 r204167 457 457 command = self._port.abspath_for_test(driver_input.test_name) 458 458 if sys.platform == 'cygwin': 459 command = path.cygpath Fast(command)459 command = path.cygpath(command) 460 460 461 461 assert not driver_input.image_hash or driver_input.should_run_pixel_test
Note:
See TracChangeset
for help on using the changeset viewer.