Changeset 260484 in webkit


Ignore:
Timestamp:
Apr 21, 2020 6:46:50 PM (4 years ago)
Author:
Matt Lewis
Message:

Bindings-test should not depend on current working directory.
https://bugs.webkit.org/show_bug.cgi?id=210831

Reviewed by Jonathan Bedard.

  • Scripts/webkitpy/bindings/main.py:

(BindingsTests.main):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r260469 r260484  
     12020-04-21  Matt Lewis  <jlewis3@apple.com>
     2
     3        Bindings-test should not depend on current working directory.
     4        https://bugs.webkit.org/show_bug.cgi?id=210831
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * Scripts/webkitpy/bindings/main.py:
     9        (BindingsTests.main):
     10
    1112020-04-21  Daniel Bates  <dabates@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/bindings/main.py

    r253073 r260484  
    177177
    178178    def main(self):
    179         current_scm = detect_scm_system(os.curdir)
     179        current_scm = detect_scm_system(os.path.dirname(__file__))
    180180        os.chdir(os.path.join(current_scm.checkout_root, 'Source'))
    181181
Note: See TracChangeset for help on using the changeset viewer.