Changeset 204167 in webkit


Ignore:
Timestamp:
Aug 5, 2016, 6:43:49 AM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r204123.
https://bugs.webkit.org/show_bug.cgi?id=160597

Caused layout test timeouts on Windows. (Requested by perarne
on #webkit).

Reverted changeset:

"[Win] Unable to reliably run tests in parallel"
https://bugs.webkit.org/show_bug.cgi?id=140914
http://trac.webkit.org/changeset/204123

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r204162 r204167  
     12016-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
    1152016-08-04  Saam Barati  <sbarati@apple.com>
    216
  • trunk/Tools/Scripts/webkitpy/common/system/path.py

    r204123 r204167  
    3131import atexit
    3232import os
    33 import re
    3433import subprocess
    3534import sys
     
    5251    return path
    5352
    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 path
    6153
    6254# Note that this object is not threadsafe and must only be called
  • trunk/Tools/Scripts/webkitpy/port/driver.py

    r204123 r204167  
    457457            command = self._port.abspath_for_test(driver_input.test_name)
    458458            if sys.platform == 'cygwin':
    459                 command = path.cygpathFast(command)
     459                command = path.cygpath(command)
    460460
    461461        assert not driver_input.image_hash or driver_input.should_run_pixel_test
Note: See TracChangeset for help on using the changeset viewer.