Title: [261401] branches/safari-609-branch/Tools
- Revision
- 261401
- Author
- [email protected]
- Date
- 2020-05-08 12:11:06 -0700 (Fri, 08 May 2020)
Log Message
Cherry-pick r260484. rdar://problem/62140724
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):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@260484 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Modified Paths
Diff
Modified: branches/safari-609-branch/Tools/ChangeLog (261400 => 261401)
--- branches/safari-609-branch/Tools/ChangeLog 2020-05-08 18:36:32 UTC (rev 261400)
+++ branches/safari-609-branch/Tools/ChangeLog 2020-05-08 19:11:06 UTC (rev 261401)
@@ -1,3 +1,27 @@
+2020-05-08 Ryan Haddad <[email protected]>
+
+ Cherry-pick r260484. rdar://problem/62140724
+
+ 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):
+
+ git-svn-id: https://svn.webkit.org/repository/webkit/trunk@260484 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+ 2020-04-21 Matt Lewis <[email protected]>
+
+ 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):
+
2020-05-07 Russell Epstein <[email protected]>
Apply patch. rdar://problem/62977667
Modified: branches/safari-609-branch/Tools/Scripts/webkitpy/bindings/main.py (261400 => 261401)
--- branches/safari-609-branch/Tools/Scripts/webkitpy/bindings/main.py 2020-05-08 18:36:32 UTC (rev 261400)
+++ branches/safari-609-branch/Tools/Scripts/webkitpy/bindings/main.py 2020-05-08 19:11:06 UTC (rev 261401)
@@ -176,7 +176,7 @@
return passed
def main(self):
- current_scm = detect_scm_system(os.curdir)
+ current_scm = detect_scm_system(os.path.dirname(__file__))
os.chdir(os.path.join(current_scm.checkout_root, 'Source'))
all_tests_passed = True
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes