Changeset 249602 in webkit


Ignore:
Timestamp:
Sep 6, 2019 5:42:34 PM (5 years ago)
Author:
Matt Lewis
Message:

Unreviewed, rolling out r249582.

This caused results.html fail to be created on internal
testers.

Reverted changeset:

"run-webkit-test: Allow results to be uploaded without scm
checkout"
https://bugs.webkit.org/show_bug.cgi?id=200787
https://trac.webkit.org/changeset/249582

Location:
trunk/Tools
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r249598 r249602  
     12019-09-06  Matt Lewis  <jlewis3@apple.com>
     2
     3        Unreviewed, rolling out r249582.
     4
     5        This caused results.html fail to be created on internal
     6        testers.
     7
     8        Reverted changeset:
     9
     10        "run-webkit-test: Allow results to be uploaded without scm
     11        checkout"
     12        https://bugs.webkit.org/show_bug.cgi?id=200787
     13        https://trac.webkit.org/changeset/249582
     14
    1152019-09-06  Aakash Jain  <aakash_jain@apple.com>
    216
  • trunk/Tools/Scripts/webkitpy/common/checkout/scm/detection.py

    r249582 r249602  
    3535from .svn import SVN
    3636from .git import Git
    37 from .stub_repository import StubRepository
    3837
    3938_log = logging.getLogger(__name__)
     
    7675            return Git(cwd=real_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive)
    7776
    78         if StubRepository.in_working_directory(real_path, filesystem=self._filesystem):
    79             return StubRepository(cwd=real_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive)
    80 
    8177        return None
    8278
  • trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py

    r249582 r249602  
    445445        """
    446446
     447        # FIXME: We initialize this here in order to engage the stupid windows hacks :).
     448        # We can't reuse an existing scm object because the specific directories may
     449        # be part of other checkouts.
     450        self._port.host.initialize_scm()
    447451        scm = SCMDetector(self._filesystem, self._executive).detect_scm_system(in_directory)
    448452        if scm:
  • trunk/Tools/Scripts/webkitpy/port/base.py

    r249582 r249602  
    16041604        from webkitpy.results.upload import Upload
    16051605
     1606        self.host.initialize_scm()
     1607
    16061608        repos = {}
    16071609        if port_config.apple_additions() and getattr(port_config.apple_additions(), 'repos', False):
Note: See TracChangeset for help on using the changeset viewer.